From 1ea61db1fb6467f00463933092791958a27dedb3 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 a77b36297..ad6f8383d 100644 --- a/src/gui/mainwindow.cpp +++ b/src/gui/mainwindow.cpp @@ -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)