mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
Make sure new RSS download rules apply to existing articles as well, not just new ones
May be related to #116.
This commit is contained in:
parent
7e57a63ec5
commit
819dcacae0
8 changed files with 51 additions and 20 deletions
|
@ -251,3 +251,12 @@ RssFilePtr RssFolder::takeChild(const QString &childId)
|
|||
{
|
||||
return m_children.take(childId);
|
||||
}
|
||||
|
||||
void RssFolder::recheckRssItemsForDownload()
|
||||
{
|
||||
RssFileHash::ConstIterator it = m_children.begin();
|
||||
RssFileHash::ConstIterator itend = m_children.end();
|
||||
for ( ; it != itend; ++it) {
|
||||
it.value()->recheckRssItemsForDownload();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue