Fix compilation errors due to recent merge from master

This commit is contained in:
Christophe Dumez
2012-06-24 10:44:52 +03:00
parent 24a73c05b9
commit 4177a37d63
2 changed files with 5 additions and 8 deletions

View File

@@ -327,11 +327,7 @@ void RSSImp::downloadTorrent() {
const RssArticle article = m_feedList->getRSSItemFromUrl(item->data(Article::FeedUrlRole).toString())
->getItem(item->data(Article::IdRole).toString());
QString torrentLink;
if (article->hasAttachment())
torrentLink = article->torrentUrl();
else
torrentLink = article->link();
QString torrentLink = article.hasAttachment() ? article.torrentUrl() : article.link();
// Check if it is a magnet link
if (torrentLink.startsWith("magnet:", Qt::CaseInsensitive))