From 725711877c18d228af341737af2c80807bb47737 Mon Sep 17 00:00:00 2001 From: Pilzinsel64 Date: Sat, 22 Jun 2024 18:49:06 +0200 Subject: [PATCH] fix version --- ModpackUpdater/AppUpdater.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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