From 696ce427a8be0f64f69a3b8c2575c47c560529c1 Mon Sep 17 00:00:00 2001 From: "Vladimir Golovnev (Glassez)" Date: Sun, 6 Dec 2015 12:55:53 +0300 Subject: [PATCH] Fix RSS isn't automarking articles as read Closes: #4260, #4233, #4221, #4133 --- src/gui/rss/rssfeed.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/gui/rss/rssfeed.cpp b/src/gui/rss/rssfeed.cpp index 9a81223ce..865606960 100644 --- a/src/gui/rss/rssfeed.cpp +++ b/src/gui/rss/rssfeed.cpp @@ -32,6 +32,7 @@ #include "rssfeed.h" #include "rssmanager.h" #include "core/bittorrent/session.h" +#include "core/bittorrent/magneturi.h" #include "rssfolder.h" #include "core/preferences.h" #include "core/qinisettings.h" @@ -371,8 +372,11 @@ void RssFeed::downloadArticleTorrentIfMatching(RssDownloadRuleList* rules, const } Logger::instance()->addMessage(tr("Automatically downloading '%1' torrent from '%2' RSS feed...").arg(article->title()).arg(displayName())); - connect(BitTorrent::Session::instance(), SIGNAL(downloadFromUrlFinished(QString)), article.data(), SLOT(handleTorrentDownloadSuccess(const QString&)), Qt::UniqueConnection); connect(article.data(), SIGNAL(articleWasRead()), SLOT(handleArticleStateChanged()), Qt::UniqueConnection); + if (BitTorrent::MagnetUri(torrent_url).isValid()) + article->markAsRead(); + else + connect(BitTorrent::Session::instance(), SIGNAL(downloadFromUrlFinished(QString)), article.data(), SLOT(handleTorrentDownloadSuccess(const QString&)), Qt::UniqueConnection); BitTorrent::AddTorrentParams params; params.savePath = matching_rule->savePath();