mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-28 05:27:15 +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) {
|
void processDownloadedFile(QString file_path) {
|
||||||
filePath = file_path;
|
filePath = file_path;
|
||||||
downloadFailure = false;
|
downloadFailure = false;
|
||||||
openRss();
|
if(openRss() >= 0) {
|
||||||
lastRefresh.start();
|
lastRefresh.start();
|
||||||
refreshed = true;
|
refreshed = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void setDownloadFailed(){
|
void setDownloadFailed(){
|
||||||
|
|
Loading…
Reference in a new issue