From e89d2e7de492c523a941cadf4747d428de6e7250 Mon Sep 17 00:00:00 2001 From: Roman / Linnea Gräf Date: Wed, 31 May 2023 13:04:51 +0200 Subject: Fix Soopy Networth (#706) * Fix Soopy Networth * Add api cache clear command --- .../moulberry/notenoughupdates/profileviewer/ProfileViewer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/io') diff --git a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ProfileViewer.java b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ProfileViewer.java index 62f55fd7..ea852da3 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ProfileViewer.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ProfileViewer.java @@ -937,10 +937,10 @@ public class ProfileViewer { JsonObject profile = skyblockProfiles.get(i).getAsJsonObject(); String cuteName = profile.get("cute_name").getAsString(); - String profileId = profile.get("profile_id").getAsString(); + String profileId = profile.get("profile_id").getAsString().replace("-", ""); SoopyNetworthData networth; - if (jsonObject.getAsJsonObject("data").get(profileId).isJsonNull()) { + if (jsonObject.getAsJsonObject("data").get(profileId) == null) { networth = new SoopyNetworthData(null); } else { networth = new SoopyNetworthData(jsonObject.getAsJsonObject("data").get(profileId).getAsJsonObject()); -- cgit