fix version

This commit is contained in:
2024-06-22 18:49:06 +02:00
parent 9fb56678f3
commit 725711877c

View File

@@ -27,7 +27,7 @@ public class AppUpdater
string result = await httpClient.GetStringAsync(UPDATE_URL);
info = JsonConvert.DeserializeObject<UpdateInfo>(result);
if (info is not null && info.Version < appVersion)
if (info is not null && info.Version > appVersion)
hasUpdate = true;
}
catch