+ 修复更新检测问题
This commit is contained in:
parent
91840d6a6b
commit
989672b948
@ -29,14 +29,14 @@ public class UpdateTask {
|
|||||||
if (!Main.getInst().getConfig().getBoolean("UPDATE-CHECK")) {
|
if (!Main.getInst().getConfig().getBoolean("UPDATE-CHECK")) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
String value = FileUtils.getStringFromURL("https://api.github.com/repos/Bkm016/TabooLib/tags", null);
|
String value = FileUtils.getStringFromURL("https://api.github.com/repos/Bkm016/TabooLib/releases", null);
|
||||||
if (value == null) {
|
if (value == null) {
|
||||||
TLocale.Logger.error("UPDATETASK.VERSION-FAIL");
|
TLocale.Logger.error("UPDATETASK.VERSION-FAIL");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
JsonElement json = new JsonParser().parse(value);
|
JsonElement json = new JsonParser().parse(value);
|
||||||
if (json.isJsonArray()) {
|
if (json.isJsonArray()) {
|
||||||
newVersion = json.getAsJsonArray().get(0).getAsJsonObject().get("name").getAsDouble();
|
newVersion = json.getAsJsonArray().get(0).getAsJsonObject().get("tag_name").getAsDouble();
|
||||||
if (TabooLib.getPluginVersion() >= newVersion) {
|
if (TabooLib.getPluginVersion() >= newVersion) {
|
||||||
TLocale.Logger.info("UPDATETASK.VERSION-LATEST");
|
TLocale.Logger.info("UPDATETASK.VERSION-LATEST");
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user