Skip to content

Commit

Permalink
Merge pull request #376 from BigBoyPro/ipv6-fix
Browse files Browse the repository at this point in the history
Small fix for IPV6 only + DDNS Server
  • Loading branch information
Neptune650 authored Aug 26, 2024
2 parents e537265 + eff51d6 commit 0b9bfc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions launcher/minecraft/auth/providers/LocalAuthProvider.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ class LocalAuthProvider : public BaseAuthProvider

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()
Expand Down

0 comments on commit 0b9bfc9

Please sign in to comment.