fix: update tv app id

This commit is contained in:
Vitaly Gashkov
2025-11-04 19:48:37 +05:00
parent b2c672dfa6
commit 777eb4ee2b
+4 -7
View File
@@ -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');