Browse Source

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.
adaptive-webui-19844
Chocobo1 6 years ago
parent
commit
1ea61db1fb
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  1. 2
      src/gui/mainwindow.cpp

2
src/gui/mainwindow.cpp

@ -518,7 +518,7 @@ void MainWindow::setTorrentAddedNotificationsEnabled(bool value) @@ -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)

Loading…
Cancel
Save