Skip to content

Commit

Permalink
✨ don't rely on tag when checking for updates
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierfoucrier committed Dec 3, 2024
1 parent 0a397c4 commit f6fa07e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/Notification.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public async Task Interaction(bool balloon = false) {
}

// display the form and focus the update tab
if (balloon && Tag == "update") {
if (balloon && UI.UpdateService.UpdateAvailable) {
UI.Visible = true;
UI.ShowInTaskbar = true;
UI.WindowState = FormWindowState.Normal;
Expand Down

0 comments on commit f6fa07e

Please sign in to comment.