mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-25 22:14:32 +00:00
Prevent auto(re)downloading of RSS articles, which exceed article limit.
This commit is contained in:
parent
a4085ef68c
commit
050893d8df
@ -125,6 +125,7 @@ void RssFeed::addArticle(const RssArticlePtr& article)
|
|||||||
// Insertion sort
|
// Insertion sort
|
||||||
RssArticleList::Iterator lowerBound = qLowerBound(m_articlesByDate.begin(), m_articlesByDate.end(), article, rssArticleDateRecentThan);
|
RssArticleList::Iterator lowerBound = qLowerBound(m_articlesByDate.begin(), m_articlesByDate.end(), article, rssArticleDateRecentThan);
|
||||||
m_articlesByDate.insert(lowerBound, article);
|
m_articlesByDate.insert(lowerBound, article);
|
||||||
|
const int lbIndex = m_articlesByDate.indexOf(article);
|
||||||
// Restrict size
|
// Restrict size
|
||||||
const int max_articles = RssSettings().getRSSMaxArticlesPerFeed();
|
const int max_articles = RssSettings().getRSSMaxArticlesPerFeed();
|
||||||
if (m_articlesByDate.size() > max_articles) {
|
if (m_articlesByDate.size() > max_articles) {
|
||||||
@ -134,6 +135,12 @@ void RssFeed::addArticle(const RssArticlePtr& article)
|
|||||||
if (!oldestArticle->isRead())
|
if (!oldestArticle->isRead())
|
||||||
--m_unreadCount;
|
--m_unreadCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check if article was inserted at the end of the list and will break max_articles limit
|
||||||
|
if (RssSettings().isRssDownloadingEnabled()) {
|
||||||
|
if (lbIndex < max_articles && !article->isRead())
|
||||||
|
downloadArticleTorrentIfMatching(m_manager->downloadRules(), article);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QList<QNetworkCookie> RssFeed::feedCookies() const
|
QList<QNetworkCookie> RssFeed::feedCookies() const
|
||||||
@ -367,10 +374,6 @@ void RssFeed::handleNewArticle(const QString& feedUrl, const QVariantHash& artic
|
|||||||
Q_ASSERT(article);
|
Q_ASSERT(article);
|
||||||
addArticle(article);
|
addArticle(article);
|
||||||
|
|
||||||
// Download torrent if necessary.
|
|
||||||
if (RssSettings().isRssDownloadingEnabled())
|
|
||||||
downloadArticleTorrentIfMatching(m_manager->downloadRules(), article);
|
|
||||||
|
|
||||||
m_manager->forwardFeedInfosChanged(m_url, displayName(), m_unreadCount);
|
m_manager->forwardFeedInfosChanged(m_url, displayName(), m_unreadCount);
|
||||||
// FIXME: We should forward the information here but this would seriously decrease
|
// FIXME: We should forward the information here but this would seriously decrease
|
||||||
// performance with current design.
|
// performance with current design.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user