diff --git a/Changelog b/Changelog index d3fe2ee10..1a1ad6043 100644 --- a/Changelog +++ b/Changelog @@ -1,6 +1,7 @@ * Unreleased - Christophe Dumez - v2.6.4 - BUGFIX: Added unicode support to email notification - BUGFIX: Improved compatibility with various SMTP servers + - BUGFIX: Fix Labeling in RSS downloader * Sat Jan 15 2011 - Christophe Dumez - v2.6.3 - BUGFIX: Fix possible crashes in full allocation mode diff --git a/src/qtlibtorrent/qbtsession.cpp b/src/qtlibtorrent/qbtsession.cpp index 59a0716f3..fc6cc861f 100644 --- a/src/qtlibtorrent/qbtsession.cpp +++ b/src/qtlibtorrent/qbtsession.cpp @@ -2422,8 +2422,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);