mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-10-03 08:41:42 +00:00
Merge pull request #376 from BigBoyPro/ipv6-fix
Small fix for IPV6 only + DDNS Server
This commit is contained in:
@@ -31,12 +31,12 @@ public:
|
||||
|
||||
QString injectorEndpoint()
|
||||
{
|
||||
return ((QString)"http://localhost:%1").arg(m_authServer->port());
|
||||
return ((QString)"http://127.0.0.1:%1").arg(m_authServer->port());
|
||||
};
|
||||
|
||||
QString authEndpoint()
|
||||
{
|
||||
return ((QString) "http://localhost:%1/auth/").arg(m_authServer->port());
|
||||
return ((QString) "http://127.0.0.1:%1/auth/").arg(m_authServer->port());
|
||||
};
|
||||
|
||||
virtual bool useYggdrasil()
|
||||
|
Reference in New Issue
Block a user