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 {
|
||||
//developer version
|
||||
if (!localVersion.isGreaterThan(version))
|
||||
if (Version.compare(localVersion, version) > 0)
|
||||
return;
|
||||
} catch (Exception ignored) { }
|
||||
|
||||
|
|
Loading…
Reference in a new issue