mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 15:07:22 -06:00
- trying to fix gtsould's work...
This commit is contained in:
13
src/rss.h
13
src/rss.h
@@ -147,17 +147,8 @@ class RssStream : public QObject{
|
||||
}
|
||||
|
||||
// display the icon in the rss window
|
||||
void displayIcon(const QString&, const QString& file_path, int return_code, const QString&) {
|
||||
void displayIcon(const QString&, const QString& file_path) {
|
||||
iconPath = file_path;
|
||||
if(return_code){
|
||||
// Download failed
|
||||
if(QFile::exists(iconPath) && iconPath!=":/Icons/rss.png") {
|
||||
QFile::remove(iconPath);
|
||||
}
|
||||
iconPath = ":/Icons/rss.png";
|
||||
emit refreshFinished(url, ICON);
|
||||
return;
|
||||
}
|
||||
openIcon();
|
||||
emit refreshFinished(url, ICON);
|
||||
}
|
||||
@@ -279,7 +270,7 @@ class RssStream : public QObject{
|
||||
void getIcon() {
|
||||
QUrl siteUrl(url);
|
||||
QString iconUrl = "http://"+siteUrl.host()+"/favicon.ico";
|
||||
connect(downloaderIcon, SIGNAL(downloadFinished(const QString&, const QString&, int, const QString&)), this, SLOT(displayIcon(const QString&, const QString&, int, const QString&)));
|
||||
connect(downloaderIcon, SIGNAL(downloadFinished(const QString&, const QString&), this, SLOT(displayIcon(const QString&, const QString&)));
|
||||
downloaderIcon->downloadUrl(iconUrl);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user