mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-27 19:57:45 +03:00
- Added more debug in rss
This commit is contained in:
parent
2c48968a31
commit
0fb78727d5
1 changed files with 5 additions and 3 deletions
|
@ -257,7 +257,6 @@ class RssStream : public QObject{
|
|||
}
|
||||
|
||||
QString getLastRefreshElapsedString() const{
|
||||
// TODO: remove this debug before release
|
||||
return tr("%1 ago", "10min ago").arg(misc::userFriendlyDuration((long)(lastRefresh.elapsed()/1000.)).replace("<", "<"));
|
||||
}
|
||||
|
||||
|
@ -387,10 +386,13 @@ class RssStream : public QObject{
|
|||
qDebug("error: icon open failed, no file or empty file at "+iconPath.toUtf8());
|
||||
if(QFile::exists(iconPath)) {
|
||||
QFile::remove(iconPath);
|
||||
if(downloadFailure)
|
||||
if(downloadFailure){
|
||||
iconPath = ":/Icons/unavailable.png";
|
||||
else
|
||||
qDebug("Could not open favicon nor rss stream, setting icon to unavailable (%s)",(const char*)getAlias().toUtf8());
|
||||
} else {
|
||||
iconPath = ":/Icons/rss.png";
|
||||
qDebug("Could not open favicon, setting default icon (%s)",(const char*)getAlias().toUtf8());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue