diff --git a/src/EventLogExpert.UI/Services/UpdateService.cs b/src/EventLogExpert.UI/Services/UpdateService.cs index b5b07921..099d63ff 100644 --- a/src/EventLogExpert.UI/Services/UpdateService.cs +++ b/src/EventLogExpert.UI/Services/UpdateService.cs @@ -108,7 +108,7 @@ await _alertDialogService.ShowAlert("No Updates Available", } string alertContent = "A new version has been detected, would you like to install and reload the application?"; - if (string.IsNullOrEmpty(latest.Changes)) + if (string.IsNullOrEmpty(latest.Changes) is not true) { alertContent += $"{Environment.NewLine}{latest.Changes}"; }