mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 05:06:44 +01:00
Correct usage of Json.
I'm dumb and forgot toString doesn't work. Repalce with getAsString
This commit is contained in:
parent
591eb60a71
commit
92a18d810c
@ -670,7 +670,7 @@ public class PlayerEvents extends PlotListener implements Listener {
|
||||
JsonObject result = (new JsonParser())
|
||||
.parse(new JsonReader(new InputStreamReader(connection.getInputStream())))
|
||||
.getAsJsonObject();
|
||||
spigotVersion = result.get("current_version").toString();
|
||||
spigotVersion = result.get("current_version").getAsString();
|
||||
} catch (IOException e) {
|
||||
new PlotMessage(Captions.PREFIX
|
||||
+ "Unable to check for updates, check console for further information.")
|
||||
|
@ -60,7 +60,7 @@ public class UpdateUtility implements Listener {
|
||||
JsonObject result = (new JsonParser())
|
||||
.parse(new JsonReader(new InputStreamReader(connection.getInputStream())))
|
||||
.getAsJsonObject();
|
||||
spigotVersion = result.get("current_version").toString();
|
||||
spigotVersion = result.get("current_version").getAsString();
|
||||
} catch (IOException e) {
|
||||
PlotSquared.log(Captions.PREFIX + "&cUnable to check for updates because: " + e);
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user