Fix Version Check
This commit is contained in:
parent
0c629833dd
commit
ce015c4f50
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ public class UpdateCheck implements Runnable
|
||||||
|
|
||||||
try {
|
try {
|
||||||
//developer version
|
//developer version
|
||||||
if (!localVersion.isGreaterThan(version))
|
if (Version.compare(localVersion, version) > 0)
|
||||||
return;
|
return;
|
||||||
} catch (Exception ignored) { }
|
} catch (Exception ignored) { }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue