diff --git a/SimpleJournal/Helper/UpdateHelper.cs b/SimpleJournal/Helper/UpdateHelper.cs index 0500e34..60ed214 100644 --- a/SimpleJournal/Helper/UpdateHelper.cs +++ b/SimpleJournal/Helper/UpdateHelper.cs @@ -78,7 +78,7 @@ public static async Task CheckForUpdatesAsync() string onlineVersionString; #if !UWP - onlineVersionString = versionInfo.Current.Normal); + onlineVersionString = versionInfo.Current.Normal; #else onlineVersionString = versionInfo.Current.Store; #endif diff --git a/SimpleJournal/Notifications/UpdateNotification.cs b/SimpleJournal/Notifications/UpdateNotification.cs index aa94396..6627ce6 100644 --- a/SimpleJournal/Notifications/UpdateNotification.cs +++ b/SimpleJournal/Notifications/UpdateNotification.cs @@ -66,7 +66,7 @@ public override List UserInteractions HandleUserInteraction = new Action(() => { #if !UWP - UpdateDialog ud = new UpdateDialog(version); + UpdateDialog ud = new UpdateDialog(version, UpdateHelper.GetLastHash()); ud.ShowDialog(); #else try