From 11b5965b31eb17f9fcf02671b68a86422c21e031 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sat, 15 Jan 2011 18:27:32 +0000 Subject: [PATCH] Fix RSS labeling --- Changelog | 1 + src/qtlibtorrent/qbtsession.cpp | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) 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);