mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-25 07:35:24 -07:00
RSS downloader should not ignore "Do not start automatically" rule
Closes #946910.
This commit is contained in:
parent
b0e3549780
commit
9382de64d6
1 changed files with 4 additions and 1 deletions
|
@ -2745,7 +2745,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…
Add table
Add a link
Reference in a new issue