From d24abc30884b25816c5a3accfad0642c56de8de4 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sat, 15 Jan 2011 18:23:19 +0000 Subject: [PATCH] Fix labeling in RSS downloader --- src/qtlibtorrent/qbtsession.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/qtlibtorrent/qbtsession.cpp b/src/qtlibtorrent/qbtsession.cpp index f4f3ed50b..3a5ad4da7 100644 --- a/src/qtlibtorrent/qbtsession.cpp +++ b/src/qtlibtorrent/qbtsession.cpp @@ -2421,8 +2421,7 @@ void QBtSession::addMagnetSkipAddDlg(QString uri) { void QBtSession::downloadUrlAndSkipDialog(QString url, QString save_path, QString label) { //emit aboutToDownloadFromUrl(url); const QUrl qurl = QUrl::fromEncoded(url.toLocal8Bit()); - if(!save_path.isEmpty()) - savepathLabel_fromurl[qurl] = qMakePair(save_path, label); + savepathLabel_fromurl[qurl] = qMakePair(save_path, label); url_skippingDlg << qurl; // Launch downloader thread downloader->downloadUrl(url);