From fc0a7e74bf21eff57c0f4e8241f7e38399414fbc Mon Sep 17 00:00:00 2001 From: Vitaly Gashkov Date: Sat, 23 Aug 2025 21:19:21 +0500 Subject: [PATCH] fix: disable progress --- crextractor.js | 1 - 1 file changed, 1 deletion(-) diff --git a/crextractor.js b/crextractor.js index ac884fe..417fc4c 100644 --- a/crextractor.js +++ b/crextractor.js @@ -11,7 +11,6 @@ const downloadLatestApk = async () => { const filepath = join(process.cwd(), 'crunchyroll.xapk'); await download(url, { output: filepath, - onProgress: (progress) => console.log(progress), onError: (error) => console.error(error), }); return filepath;