From 732d5d6db9ce5f9d91aa922db791a55fdfb5b844 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Wed, 3 Apr 2019 23:53:38 +0800 Subject: [PATCH] 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. --- src/gui/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/mainwindow.cpp b/src/gui/mainwindow.cpp index d1fb3710b..83c0fd884 100644 --- a/src/gui/mainwindow.cpp +++ b/src/gui/mainwindow.cpp @@ -526,7 +526,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)