mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 17:23:07 -07:00
RSS: Correctly clean up config file when removing a feed
This commit is contained in:
parent
1e1094f8da
commit
8219c29b0c
1 changed files with 7 additions and 2 deletions
|
@ -113,6 +113,11 @@ void RssFeed::removeAllSettings() {
|
|||
all_feeds_filters.remove(m_url);
|
||||
qBTRSS.setValue("feed_filters", all_feeds_filters);
|
||||
}
|
||||
QHash<QString, QVariant> all_old_items = qBTRSS.value("old_items", QHash<QString, QVariant>()).toHash();
|
||||
if (all_old_items.contains(m_url)) {
|
||||
all_old_items.remove(m_url);
|
||||
qBTRSS.setValue("old_items", all_old_items);
|
||||
}
|
||||
}
|
||||
|
||||
bool RssFeed::itemAlreadyExists(const QString &hash) const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue