mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 22:47:21 -06:00
Merge pull request #3456 from Chocobo1/localhost
Fix translated localhost address (::ffff:127.0.0.1) is not recognized
This commit is contained in:
@@ -316,7 +316,8 @@ void AbstractWebApplication::increaseFailedAttempts()
|
|||||||
bool AbstractWebApplication::isAuthNeeded()
|
bool AbstractWebApplication::isAuthNeeded()
|
||||||
{
|
{
|
||||||
return (env_.clientAddress != QHostAddress::LocalHost
|
return (env_.clientAddress != QHostAddress::LocalHost
|
||||||
&& env_.clientAddress != QHostAddress::LocalHostIPv6)
|
&& env_.clientAddress != QHostAddress::LocalHostIPv6
|
||||||
|
&& env_.clientAddress != QHostAddress("::ffff:127.0.0.1"))
|
||||||
|| Preferences::instance()->isWebUiLocalAuthEnabled();
|
|| Preferences::instance()->isWebUiLocalAuthEnabled();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user