mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 14:38:04 -06:00
Several RSS fixes:
- Fix possible redownload of torrents marked as read (Closes #927495) - Properly remove RSS feed settings/history upon feed removal - Fix possible crash in RSS Downloader dialog in debug mode
This commit is contained in:
@@ -474,8 +474,7 @@ void AutomatedRssDownloader::updateMatchingArticles()
|
||||
if(!rule) continue;
|
||||
foreach(const QString &feed_url, rule->rssFeeds()) {
|
||||
qDebug() << Q_FUNC_INFO << feed_url;
|
||||
Q_ASSERT(all_feeds.contains(feed_url));
|
||||
if(!all_feeds.contains(feed_url)) continue;
|
||||
if(!all_feeds.contains(feed_url)) continue; // Feed was removed
|
||||
RssFeedPtr feed = all_feeds.value(feed_url);
|
||||
Q_ASSERT(feed);
|
||||
if(!feed) continue;
|
||||
|
||||
Reference in New Issue
Block a user