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 | |
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 | ||||
-rw-r--r-- | src/Protocol/MojangAPI.cpp | 2 |
2 files changed, 3 insertions, 3 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"; diff --git a/src/Protocol/MojangAPI.cpp b/src/Protocol/MojangAPI.cpp index 244052a36..6b8999216 100644 --- a/src/Protocol/MojangAPI.cpp +++ b/src/Protocol/MojangAPI.cpp @@ -783,7 +783,7 @@ void cMojangAPI::QueryUUIDToProfile(const cUUID & a_UUID) { // Create the request address: AString Address = m_UUIDToProfileAddress; - ReplaceString(Address, "%UUID%", a_UUID.ToShortString()); + ReplaceURL(Address, "%UUID%", a_UUID.ToShortString()); // Create the HTTP request: AString Request; |