mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-31 04:38:04 -06:00
Do not mark articles read if download has failed
This change includes: always try to download unread articles matching ruleset already present in list (aka redownload failed items)
This commit is contained in:
@@ -120,3 +120,10 @@ const QString& RssArticle::title() const
|
||||
{
|
||||
return m_title;
|
||||
}
|
||||
|
||||
void RssArticle::handleTorrentDownloadSuccess(const QString &url) {
|
||||
if (url == m_torrentUrl || url == m_link) {
|
||||
markAsRead();
|
||||
emit articleWasRead();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user