fix unknown player and add player not found response

This commit is contained in:
Lee
2024-04-06 18:57:09 +01:00
parent 1542cff64e
commit a060d5d027
5 changed files with 86 additions and 7 deletions

View File

@ -35,6 +35,9 @@ public class MojangAPIService {
.build();
HttpResponse<String> response = Main.getCLIENT().send(request, HttpResponse.BodyHandlers.ofString());
if (response.statusCode() != 200) {
return null;
}
return Main.getGSON().fromJson(response.body(), new TypeToken<MojangSessionServerProfile>(){}.getType());
}
@ -52,6 +55,9 @@ public class MojangAPIService {
.build();
HttpResponse<String> response = Main.getCLIENT().send(request, HttpResponse.BodyHandlers.ofString());
if (response.statusCode() != 200) {
return null;
}
return Main.getGSON().fromJson(response.body(), new TypeToken<MojangApiProfile>(){}.getType());
}
}