mirror of https://github.com/2dust/v2rayN
fix update check
parent
b3292729b0
commit
6d1636c540
|
@ -458,7 +458,7 @@ namespace v2rayN.Handler
|
|||
throw new ArgumentException("Type");
|
||||
}
|
||||
|
||||
if (curVersion == version)
|
||||
if (string.Compare(curVersion, version, true) >= 0)
|
||||
{
|
||||
AbsoluteCompleted?.Invoke(this, new ResultEventArgs(false, message));
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue