2 Commits
Author SHA1 Message Date
Vitaly Gashkov b2c672dfa6 1.3.3 2025-10-25 12:14:11 +05:00
Vitaly Gashkov 828f4fa1d5 fix: correct checking for downloaded apk 2025-10-25 12:13:35 +05:00
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -100,7 +100,7 @@ const extract = async ({ target = 'mobile', output, cleanup = false } = {}) => {
console.log('Downloading APK...');
const apkPath = target === 'tv' ? await downloadTvApk() : await downloadMobileApk();
if (existsSync(apkPath)) {
if (!existsSync(apkPath)) {
console.error('Unable to find APK (possibly a download error)');
return;
}
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "crextractor",
"version": "1.3.2",
"version": "1.3.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "crextractor",
"version": "1.3.2",
"version": "1.3.3",
"funding": [
{
"type": "individual",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "crextractor",
"version": "1.3.2",
"version": "1.3.3",
"description": "Utility for extracting credentials from the Crunchyroll Android app",
"main": "crextractor.js",
"bin": {