1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 15:27:54 +00:00

Merge pull request #6221 from evsh/fix-qt5-log-flood

Set upper version limit for QTBUG-52633
This commit is contained in:
sledgehammer999 2017-01-11 01:41:46 +02:00 committed by GitHub
commit bf102be567

View File

@ -1939,7 +1939,7 @@ void Session::networkConfigurationChange(const QNetworkConfiguration& cfg)
// workaround for QTBUG-52633: check interface IPs, react only if the IPs have changed // workaround for QTBUG-52633: check interface IPs, react only if the IPs have changed
// seems to be present only with NetworkManager, hence Q_OS_LINUX // seems to be present only with NetworkManager, hence Q_OS_LINUX
#if defined Q_OS_LINUX && QT_VERSION >= QT_VERSION_CHECK(5, 0, 0) // && QT_VERSION <= QT_VERSION_CHECK(5, ?, ?) #if defined Q_OS_LINUX && QT_VERSION >= QT_VERSION_CHECK(5, 0, 0) && QT_VERSION < QT_VERSION_CHECK(5, 7, 1)
static QStringList boundIPs = getListeningIPs(); static QStringList boundIPs = getListeningIPs();
const QStringList newBoundIPs = getListeningIPs(); const QStringList newBoundIPs = getListeningIPs();
if ((configuredInterfaceName == changedInterface) && (boundIPs != newBoundIPs)) { if ((configuredInterfaceName == changedInterface) && (boundIPs != newBoundIPs)) {