mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 15:27:54 +00:00
RSS downloader should not ignore "Do not start automatically" rule
Closes #946910.
This commit is contained in:
parent
3389820c73
commit
90b520651b
@ -2667,7 +2667,10 @@ void QBtSession::processDownloadedFile(QString url, QString file_path) {
|
|||||||
emit newDownloadedTorrent(file_path, url);
|
emit newDownloadedTorrent(file_path, url);
|
||||||
} else {
|
} else {
|
||||||
url_skippingDlg.removeAt(index);
|
url_skippingDlg.removeAt(index);
|
||||||
addTorrent(file_path, false, url, false);
|
QTorrentHandle h = addTorrent(file_path, false, url, false);
|
||||||
|
// Pause torrent if necessary
|
||||||
|
if (h.is_valid() && addInPause && Preferences().useAdditionDialog())
|
||||||
|
h.pause();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user