Browse Source

- RSS fix: Make sure to update refreshed boolean only if the RSS feed have been refreshed

adaptive-webui-19844
Christophe Dumez 15 years ago
parent
commit
955d8069e2
  1. 7
      src/rss.h

7
src/rss.h

@ -367,9 +367,10 @@ public slots : @@ -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…
Cancel
Save