Fix Version Check

This commit is contained in:
Konloch 2021-07-21 15:54:17 -07:00
parent 0c629833dd
commit ce015c4f50

View file

@ -129,7 +129,7 @@ public class UpdateCheck implements Runnable
try {
//developer version
if (!localVersion.isGreaterThan(version))
if (Version.compare(localVersion, version) > 0)
return;
} catch (Exception ignored) { }