diff --git a/ModpackUpdater/AppUpdater.cs b/ModpackUpdater/AppUpdater.cs index 3488926..fe2e0be 100644 --- a/ModpackUpdater/AppUpdater.cs +++ b/ModpackUpdater/AppUpdater.cs @@ -27,7 +27,7 @@ public class AppUpdater string result = await httpClient.GetStringAsync(UPDATE_URL); info = JsonConvert.DeserializeObject(result); - if (info is not null && info.Version < appVersion) + if (info is not null && info.Version > appVersion) hasUpdate = true; } catch