Skip to content

Commit

Permalink
Show RSS root folder in RSS downloader
Browse files Browse the repository at this point in the history
This allows for applying rules to all feeds. Closes qbittorrent#1805.
  • Loading branch information
Pioooooo committed Sep 23, 2023
1 parent 3ebc37d commit 690563a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gui/rss/automatedrssdownloader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@ void AutomatedRssDownloader::createRuleItem(const RSS::AutoDownloadRule &rule)
void AutomatedRssDownloader::loadFeedList()
{
const QSignalBlocker feedListSignalBlocker(m_ui->listFeeds);
loadFeedTree(nullptr, RSS::Session::instance()->rootFolder());
QTreeWidgetItem *rssRoot = createFeedTreeItem(RSS::Session::instance()->rootFolder(), nullptr);
loadFeedTree(rssRoot, RSS::Session::instance()->rootFolder());

updateFeedList();
}
Expand Down

0 comments on commit 690563a

Please sign in to comment.