Hide generic waiting states in queue

This commit is contained in:
Sucukdeluxe
2026-03-08 22:02:27 +01:00
parent fff0589154
commit 83c0c18dca
3 changed files with 15 additions and 7 deletions
+1 -1
View File
@@ -5567,7 +5567,7 @@ export class DownloadManager extends EventEmitter {
private getVisiblePacedStartBudget(): number {
const maxParallel = Math.max(1, Number(this.settings.maxParallel) || 1);
return Math.max(0, maxParallel - this.activeTasks.size);
return this.activeTasks.size < maxParallel ? 1 : 0;
}
private delayPacedStartForItem(item: DownloadItem, now: number): boolean {