1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-30 00:14:57 +00:00

Disable downloading tracker favicons by default

Workaround for a crash in Qt networking library, source:
https://github.com/qbittorrent/qBittorrent/issues/9667#issuecomment-464445025

Closes #9667.
This commit is contained in:
Chocobo1 2019-04-03 23:53:38 +08:00
parent e499317695
commit 1ea61db1fb
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C

View File

@ -518,7 +518,7 @@ void MainWindow::setTorrentAddedNotificationsEnabled(bool value)
bool MainWindow::isDownloadTrackerFavicon() const
{
return settings()->loadValue(KEY_DOWNLOAD_TRACKER_FAVICON, true).toBool();
return settings()->loadValue(KEY_DOWNLOAD_TRACKER_FAVICON, false).toBool();
}
void MainWindow::setDownloadTrackerFavicon(bool value)