Compare commits

..

No commits in common. "ee69dcf4cc9ad45b624a68c873873f6cfcbe2b56" and "85889de7908d40fcec8f6081d71206b5b27b0f5c" have entirely different histories.

2 changed files with 2 additions and 7 deletions

View File

@ -1,6 +1,6 @@
{
"name": "real-debrid-downloader",
"version": "1.7.128",
"version": "1.7.127",
"description": "Desktop downloader",
"main": "build/main/main/main.js",
"author": "Sucukdeluxe",

View File

@ -10457,13 +10457,8 @@ export class DownloadManager extends EventEmitter {
entry.fullStatus = "Entpacken - Error";
} else if (result.extracted > 0) {
entry.fullStatus = formatExtractDone(nowMs() - hybridExtractStartMs);
} else if (KNOWN_SMALL_FILE_RE.test(entry.fileName || "")) {
// Companion metadata files (.sfv, .nfo, .md5) are not archives themselves.
// If no archives were extracted (already done in a prior round) and no
// failures occurred, mark companions as extracted so they don't stay stuck.
entry.fullStatus = "Entpackt (Metadaten)";
}
// extracted === 0 && failed === 0 for archive items: keep current status
// extracted === 0 && failed === 0: keep current status (no archives to process)
entry.updatedAt = updatedAt;
}
}