Browse Source

Merge pull request #3283 from glassez/rss

Fix add torrent dialog is not shown (#2892 regression).
adaptive-webui-19844
sledgehammer999 9 years ago
parent
commit
2658b39434
  1. 8
      src/gui/rss/rss_imp.cpp

8
src/gui/rss/rss_imp.cpp

@ -344,12 +344,10 @@ void RSSImp::downloadSelectedTorrents() @@ -344,12 +344,10 @@ void RSSImp::downloadSelectedTorrents()
RssArticlePtr article = feed->getItem(item->data(Article::IdRole).toString());
if (!article) continue;
QString torrentLink = article->torrentUrl();
// Check if it is a magnet link
if (torrentLink.startsWith("magnet:", Qt::CaseInsensitive) && Preferences::instance()->useAdditionDialog())
AddNewTorrentDialog::show(torrentLink);
if (Preferences::instance()->useAdditionDialog())
AddNewTorrentDialog::show(article->torrentUrl());
else
BitTorrent::Session::instance()->addTorrent(torrentLink);
BitTorrent::Session::instance()->addTorrent(article->torrentUrl());
}
}

Loading…
Cancel
Save