diff options
author | Alexander Harkness <me@bearbin.net> | 2021-08-23 10:35:03 +0200 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2021-08-23 10:35:03 +0200 |
commit | 4b8952e438da8e57d6442a0b7451dac8060f154b (patch) | |
tree | 2dfa6aef09599c9e7b768a135abc5fc17c9bf174 /src/Protocol/Authenticator.cpp | |
parent | Fix typo in message send when getting achievements (#5282) (diff) | |
download | cuberite-4b8952e438da8e57d6442a0b7451dac8060f154b.tar cuberite-4b8952e438da8e57d6442a0b7451dac8060f154b.tar.gz cuberite-4b8952e438da8e57d6442a0b7451dac8060f154b.tar.bz2 cuberite-4b8952e438da8e57d6442a0b7451dac8060f154b.tar.lz cuberite-4b8952e438da8e57d6442a0b7451dac8060f154b.tar.xz cuberite-4b8952e438da8e57d6442a0b7451dac8060f154b.tar.zst cuberite-4b8952e438da8e57d6442a0b7451dac8060f154b.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Authenticator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Protocol/Authenticator.cpp b/src/Protocol/Authenticator.cpp index 8b536d4e1..6233ddb32 100644 --- a/src/Protocol/Authenticator.cpp +++ b/src/Protocol/Authenticator.cpp @@ -144,8 +144,8 @@ bool cAuthenticator::AuthWithYggdrasil(AString & a_UserName, const AString & a_S // Create the GET request: AString ActualAddress = m_Address; - ReplaceString(ActualAddress, "%USERNAME%", a_UserName); - ReplaceString(ActualAddress, "%SERVERID%", a_ServerId); + ReplaceURL(ActualAddress, "%USERNAME%", a_UserName); + ReplaceURL(ActualAddress, "%SERVERID%", a_ServerId); AString Request; Request += "GET " + ActualAddress + " HTTP/1.0\r\n"; |