diff --git a/Changelog b/Changelog index fa4da9fb7..4b8c1636e 100644 --- a/Changelog +++ b/Changelog @@ -3,6 +3,7 @@ - BUGFIX: Display real save path instead of the temporary one in torrent properties - BUGFIX: Catching invalid_handle exception to avoid rare crashes - BUGFIX: Fixed popup menu position in RSS feeds list + - BUGFIX: Don't save RSS feed state if it could not be updated * Thu Aug 13 2009 - Christophe Dumez - v1.4.0 - FEATURE: Display swarm information in lists diff --git a/src/rss.h b/src/rss.h index 3c79e8af8..e84959019 100644 --- a/src/rss.h +++ b/src/rss.h @@ -329,8 +329,10 @@ class RssStream : public QObject{ } ~RssStream(){ - QSettings qBTRSS("qBittorrent-rss"); - qBTRSS.setValue(url, getAllReadHashes()); + if(refreshed) { + QSettings qBTRSS("qBittorrent-rss"); + qBTRSS.setValue(url, getAllReadHashes()); + } removeAllItems(); if(QFile::exists(filePath)) QFile::remove(filePath);