mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-14 10:37:06 -07:00
- Fixed debug output
This commit is contained in:
parent
db9bc24b5f
commit
969d9d5f69
1 changed files with 1 additions and 2 deletions
|
@ -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()){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue