mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-24 10:16:00 +03:00
- RSS fix: Make sure to update refreshed boolean only if the RSS feed have been refreshed
This commit is contained in:
parent
25d998f1b5
commit
955d8069e2
1 changed files with 4 additions and 3 deletions
|
@ -367,9 +367,10 @@ public slots :
|
|||
void processDownloadedFile(QString file_path) {
|
||||
filePath = file_path;
|
||||
downloadFailure = false;
|
||||
openRss();
|
||||
lastRefresh.start();
|
||||
refreshed = true;
|
||||
if(openRss() >= 0) {
|
||||
lastRefresh.start();
|
||||
refreshed = true;
|
||||
}
|
||||
}
|
||||
|
||||
void setDownloadFailed(){
|
||||
|
|
Loading…
Reference in a new issue