Skip to content

Commit

Permalink
fix: Normal Version
Browse files Browse the repository at this point in the history
  • Loading branch information
andyld97 committed Aug 5, 2023
1 parent ca1fd36 commit 6295f3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SimpleJournal/Helper/UpdateHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public static async Task<UpdateInfo> CheckForUpdatesAsync()

string onlineVersionString;
#if !UWP
onlineVersionString = versionInfo.Current.Normal);
onlineVersionString = versionInfo.Current.Normal;
#else
onlineVersionString = versionInfo.Current.Store;
#endif
Expand Down
2 changes: 1 addition & 1 deletion SimpleJournal/Notifications/UpdateNotification.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public override List<UserInteraction> UserInteractions
HandleUserInteraction = new Action(() =>
{
#if !UWP
UpdateDialog ud = new UpdateDialog(version);
UpdateDialog ud = new UpdateDialog(version, UpdateHelper.GetLastHash());
ud.ShowDialog();
#else
try
Expand Down

0 comments on commit 6295f3d

Please sign in to comment.