mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 06:28:03 -06:00
Fix possible rule saving issue
Matching articles are now previewable in the rss downloader dialog Make sure Rss downloading is enabled before checking for matching rules
This commit is contained in:
@@ -580,7 +580,7 @@ void RSSImp::updateRefreshInterval(unsigned int val) {
|
||||
RSSImp::RSSImp(QBtSession *BTSession) : QWidget(), BTSession(BTSession){
|
||||
setupUi(this);
|
||||
|
||||
rssmanager = new RssManager(BTSession);
|
||||
rssmanager = RssManager::instance();
|
||||
|
||||
listStreams = new FeedListWidget(splitter_h, rssmanager);
|
||||
splitter_h->insertWidget(0, listStreams);
|
||||
@@ -634,7 +634,7 @@ RSSImp::~RSSImp(){
|
||||
qDebug("Deleting RSSImp...");
|
||||
saveFoldersOpenState();
|
||||
delete listStreams;
|
||||
delete rssmanager;
|
||||
RssManager::drop();
|
||||
qDebug("RSSImp deleted");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user