fix update check

pull/2740/head
2dust 2022-10-26 19:09:40 +08:00
parent b3292729b0
commit 6d1636c540
1 changed files with 1 additions and 1 deletions

View File

@ -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;