From e74b39f5afc40b9191129ca8faa010309a07b6ce Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 24 Jun 2012 20:31:16 +0300 Subject: [PATCH] Build fix --- src/rss/rssfeed.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rss/rssfeed.cpp b/src/rss/rssfeed.cpp index 3cf96366a..709079f2e 100644 --- a/src/rss/rssfeed.cpp +++ b/src/rss/rssfeed.cpp @@ -296,7 +296,7 @@ void RssFeed::downloadMatchingArticleTorrents() { QString torrent_url = article->hasAttachment() ? article->torrentUrl() : article->link(); QBtSession::instance()->addConsoleMessage(tr("Automatically downloading %1 torrent from %2 RSS feed...").arg(article->title()).arg(displayName())); if (torrent_url.startsWith("magnet:", Qt::CaseInsensitive)) - QBtSession::instance()->addMagnetSkipAddDlg(torrent_url, matching_rule.savePath(), matching_rule.label()); + QBtSession::instance()->addMagnetSkipAddDlg(torrent_url, matching_rule->savePath(), matching_rule->label()); else QBtSession::instance()->downloadUrlAndSkipDialog(torrent_url, matching_rule->savePath(), matching_rule->label()); }