Browse Source

RSS downloader should not ignore "Do not start automatically" rule

Closes #946910.
adaptive-webui-19844
Christophe Dumez 13 years ago
parent
commit
90b520651b
  1. 5
      src/qtlibtorrent/qbtsession.cpp

5
src/qtlibtorrent/qbtsession.cpp

@ -2667,7 +2667,10 @@ void QBtSession::processDownloadedFile(QString url, QString file_path) { @@ -2667,7 +2667,10 @@ void QBtSession::processDownloadedFile(QString url, QString file_path) {
emit newDownloadedTorrent(file_path, url);
} else {
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…
Cancel
Save