From f6fa07e759f34bcd13cc7795b44806913ecbde05 Mon Sep 17 00:00:00 2001 From: Xavier Foucrier Date: Wed, 4 Dec 2024 00:43:18 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20don't=20rely=20on=20tag=20when=20ch?= =?UTF-8?q?ecking=20for=20updates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/Notification.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/Notification.cs b/code/Notification.cs index a445793..15e5f1f 100644 --- a/code/Notification.cs +++ b/code/Notification.cs @@ -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;