From a4436bd6c88afa52ea98447357c140427bd7b6df Mon Sep 17 00:00:00 2001 From: Nils Maier Date: Tue, 3 Sep 2019 18:17:09 +0200 Subject: [PATCH] Force Start should apply to Queued downloads Closes #57 --- windows/manager/table.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/windows/manager/table.ts b/windows/manager/table.ts index 127ad7d..7e13824 100644 --- a/windows/manager/table.ts +++ b/windows/manager/table.ts @@ -777,7 +777,8 @@ export class DownloadTable extends VirtualTable { } resumeDownloads(forced = false) { - const sids = this.getSelectedSids(DownloadState.RESUMABLE); + const sids = this.getSelectedSids( + forced ? DownloadState.FORCABLE : DownloadState.RESUMABLE); if (!sids.length) { return; }