diff --git a/Elwig/App.xaml.cs b/Elwig/App.xaml.cs index d477197..bef7d46 100644 --- a/Elwig/App.xaml.cs +++ b/Elwig/App.xaml.cs @@ -198,7 +198,7 @@ namespace Elwig { public static async Task CheckForUpdates() { if (Config.UpdateUrl == null) return; var latest = await Utils.GetLatestInstallerUrl(Config.UpdateUrl); - if (latest != null && latest.Value.Version != Version) { + if (latest != null && new Version(latest.Value.Version) > new Version(Version)) { await MainDispatcher.BeginInvoke(() => { var d = new UpdateDialog(latest.Value.Version, latest.Value.Url, latest.Value.Size); if (d.ShowDialog() == true) {