Browse Source

- Fixed tiny bug in RSS feeds refreshing code

adaptive-webui-19844
Christophe Dumez 15 years ago
parent
commit
4d67170d3e
  1. 5
      src/rss.h

5
src/rss.h

@ -741,11 +741,12 @@ void feedIconChanged(QString url, QString icon_path); @@ -741,11 +741,12 @@ void feedIconChanged(QString url, QString icon_path);
}
void refreshOldFeeds(){
qDebug("refresh old feeds");
RssStream *stream;
foreach(stream, streams){
QString url = stream->getUrl();
if(stream->isLoading()) return;
if(stream->getLastRefreshElapsed() != -1 && stream->getLastRefreshElapsed() < (int)refreshInterval) return;
if(stream->isLoading()) continue;
if(stream->getLastRefreshElapsed() != -1 && stream->getLastRefreshElapsed() < (int)refreshInterval) continue;
qDebug("Refreshing old feed: %s...", (const char*)url.toLocal8Bit());
stream->setLoading(true);
downloader->downloadUrl(url);

Loading…
Cancel
Save