From 777eb4ee2b5a189d0ae00c60400f1662d33ec05c Mon Sep 17 00:00:00 2001 From: Vitaly Gashkov Date: Tue, 4 Nov 2025 19:48:37 +0500 Subject: [PATCH] fix: update tv app id --- crextractor.js | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/crextractor.js b/crextractor.js index 41a1736..b1fb5ca 100644 --- a/crextractor.js +++ b/crextractor.js @@ -16,13 +16,10 @@ const downloadMobileApk = async () => { const downloadTvApk = async () => { const source = 'https://webservices.aptoide.com/webservices/3/getApkInfo'; - const formData = new FormData(); - formData.append('identif', 'id:71666229'); - formData.append('mode', 'json'); - const response = await fetch(source, { - method: 'POST', - body: formData, - }); + const body = new FormData(); + body.append('identif', 'id:72075737'); + body.append('mode', 'json'); + const response = await fetch(source, { method: 'POST', body }); const json = await response.json(); const url = json.apk.path; const filepath = join(process.cwd(), 'crunchyroll.apk');