Skip to content

Commit

Permalink
fixup! style(updater): formatting with dotnet format
Browse files Browse the repository at this point in the history
fix(Updater): fixed incorrect version number string in message box
  • Loading branch information
a committed Jul 17, 2024
1 parent 71e4b76 commit e058c31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Lumper.UI/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public async ValueTask UpdateCommand()
Tuple<bool,Updater.Updater.Version> updateAvailable = await Updater.Updater.CheckForUpdate();
if (updateAvailable.Item1)
{
string updateNumber = updateAvailable.ToString();
string updateNumber = updateAvailable.Item2.ToString();
ButtonResult result = await MessageBoxManager
.GetMessageBoxStandard(
"Update Available",
Expand Down

0 comments on commit e058c31

Please sign in to comment.