From b4d0c65cd23215dfe6b3271489b1911162cc5ece Mon Sep 17 00:00:00 2001 From: AnimeDL Date: Fri, 14 Jul 2023 18:57:39 -0700 Subject: [PATCH] Remove repetitive error log --- hidive.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hidive.ts b/hidive.ts index 4b0ab6b..fe50e73 100644 --- a/hidive.ts +++ b/hidive.ts @@ -257,7 +257,7 @@ export default class Hidive implements ServiceClass { if (!isGet) { const resJ = JSON.parse(apiReq.res.body); if (resJ.Code > 0) { - console.error(`[ERROR] Code ${resJ.Code} (${resJ.Status}): ${resJ.Message}\n`); + console.error(`Code ${resJ.Code} (${resJ.Status}): ${resJ.Message}\n`); if (resJ.Code == 81 || resJ.Code == 5) { console.info('[NOTE] App was broken because of changes in official app.'); console.info('[NOTE] See: https://github.com/anidl/hidive-downloader-nx/issues/1\n');