HYP YOU IDIOT!... Fix fetchPlayer not returning actual player information

This commit is contained in:
2023-11-22 23:27:29 +02:00
parent 52a18e7be3
commit 6bb74a1b17
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
version_major=0
version_minor=0
version_patch=54
version_patch=55
shade_group=com.hypherionmc.sdlink.shaded.

View File

@@ -393,7 +393,7 @@ public class MinecraftAccount {
Response response = client.newCall(request).execute();
if (response.isSuccessful() && response.body() != null) {
JSONObject obj = new JSONObject(new JSONTokener(response.body().toString()));
JSONObject obj = new JSONObject(new JSONTokener(response.body().string()));
String uuid = "";
String returnname = name;