Force Start should apply to Queued downloads

Closes #57
This commit is contained in:
Nils Maier 2019-09-03 18:17:09 +02:00
parent 5a4b8143b2
commit a4436bd6c8

View File

@ -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;
}