mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-08 06:08:06 +00:00
fix: fix nightly update checking showing current version
This commit is contained in:
@@ -3892,7 +3892,7 @@ public class Main {
|
||||
for (int i = 0; i < arr.size(); i++) {
|
||||
JsonObject versionObj = arr.get(i).asObject();
|
||||
String tagName = versionObj.get("tag_name").asString();
|
||||
if (currentVersion.equals(tagName) || stableTagName.equals(tagName)) {
|
||||
if (currentTagName.equals(tagName) || stableTagName.equals(tagName)) {
|
||||
//Stop at current version, do not display more
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user