1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 07:18:08 +00:00

- Fixed debug output

This commit is contained in:
Christophe Dumez 2007-08-03 15:17:34 +00:00
parent db9bc24b5f
commit 969d9d5f69

View File

@ -441,13 +441,12 @@ class RssManager : public QObject{
}
void refreshOldFeeds(){
qDebug("Refreshing old rss feeds");
RssStream *stream;
foreach(stream, streams){
QString url = stream->getUrl();
if(stream->isLoading()) return;
if(stream->getLastRefreshElapsed() < STREAM_REFRESH_INTERVAL) return;
qDebug("Refreshing feed: %s...", (const char*)url.toUtf8());
qDebug("Refreshing old feed: %s...", (const char*)url.toUtf8());
stream->setLoading(true);
downloader->downloadUrl(url);
if(!stream->hasCustomIcon()){