mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Fix rare NPE in skin handling code (#3357)
This commit is contained in:
parent
ece1b2a8ce
commit
e8764c6a81
1 changed files with 19 additions and 14 deletions
|
@ -258,8 +258,15 @@ public class SkinManager {
|
|||
JsonNode skinObject = GeyserImpl.JSON_MAPPER.readTree(new String(Base64.getDecoder().decode(encodedJson), StandardCharsets.UTF_8));
|
||||
JsonNode textures = skinObject.get("textures");
|
||||
|
||||
if (textures != null) {
|
||||
if (textures == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
JsonNode skinTexture = textures.get("SKIN");
|
||||
if (skinTexture == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
String skinUrl = skinTexture.get("url").asText().replace("http://", "https://");
|
||||
|
||||
boolean isAlex = skinTexture.has("metadata");
|
||||
|
@ -272,8 +279,6 @@ public class SkinManager {
|
|||
|
||||
return new GameProfileData(skinUrl, capeUrl, isAlex);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return default skin with default cape when texture data is invalid, or the Bedrock player's skin if this
|
||||
|
|
Loading…
Reference in a new issue