Retry failed extractions on unpause, fix delete callback deps

- triggerPendingExtractions() now runs when unpausing, so packages
  with extraction errors are automatically retried
- executeDeleteSelection no longer depends on snapshot objects
  (prevents unnecessary re-renders with large queues)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sucukdeluxe
2026-03-02 19:58:01 +01:00
co-authored by Claude Opus 4.6
parent 430ec7352b
commit ecf56cb977
3 changed files with 12 additions and 6 deletions
+3
View File
@@ -2484,6 +2484,9 @@ export class DownloadManager extends EventEmitter {
active.abortController.abort("stall");
}
}
// Retry failed extractions after unpause
this.triggerPendingExtractions();
}
this.persistSoon();