From ea7c1ace2a62a7e0ba9a07dc4894828d1923d5bc Mon Sep 17 00:00:00 2001 From: Evengard Date: Mon, 21 Aug 2017 17:33:07 +0300 Subject: [PATCH] Disable skipping of loopback interfaces This fixes the absence of VPN tunnel interfaces under Windows and works around the QTBUG-32349 Fixes #7291 --- src/gui/advancedsettings.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gui/advancedsettings.cpp b/src/gui/advancedsettings.cpp index 09bc9d062..dd35a9511 100644 --- a/src/gui/advancedsettings.cpp +++ b/src/gui/advancedsettings.cpp @@ -329,7 +329,6 @@ void AdvancedSettings::loadAdvancedSettings() // https://github.com/qbittorrent/qBittorrent/pull/5135 if (iface.addressEntries().isEmpty()) continue; - if (iface.flags() & QNetworkInterface::IsLoopBack) continue; combo_iface.addItem(iface.humanReadableName(), iface.name()); if (!current_iface.isEmpty() && (iface.name() == current_iface)) { combo_iface.setCurrentIndex(i);