mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-29 11:48:05 -06:00
- BUGFIX: Don't save RSS feed state if it could not be updated
This commit is contained in:
@@ -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 <chris@qbittorrent.org> - v1.4.0
|
||||
- FEATURE: Display swarm information in lists
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user