Compare commits
2 Commits
85889de790
...
ee69dcf4cc
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ee69dcf4cc | ||
|
|
711147fc10 |
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "real-debrid-downloader",
|
"name": "real-debrid-downloader",
|
||||||
"version": "1.7.127",
|
"version": "1.7.128",
|
||||||
"description": "Desktop downloader",
|
"description": "Desktop downloader",
|
||||||
"main": "build/main/main/main.js",
|
"main": "build/main/main/main.js",
|
||||||
"author": "Sucukdeluxe",
|
"author": "Sucukdeluxe",
|
||||||
|
|||||||
@ -10457,8 +10457,13 @@ export class DownloadManager extends EventEmitter {
|
|||||||
entry.fullStatus = "Entpacken - Error";
|
entry.fullStatus = "Entpacken - Error";
|
||||||
} else if (result.extracted > 0) {
|
} else if (result.extracted > 0) {
|
||||||
entry.fullStatus = formatExtractDone(nowMs() - hybridExtractStartMs);
|
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: keep current status (no archives to process)
|
// extracted === 0 && failed === 0 for archive items: keep current status
|
||||||
entry.updatedAt = updatedAt;
|
entry.updatedAt = updatedAt;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user