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. 3
      src/rss.h

3
src/rss.h

@ -367,10 +367,11 @@ 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(){
downloadFailure = true; downloadFailure = true;

Loading…
Cancel
Save