From 5badaa52d72e805768c2573ad16bdcb94926313a Mon Sep 17 00:00:00 2001 From: Pieter van Ginkel Date: Tue, 26 Dec 2023 08:19:29 +0100 Subject: [PATCH] Unconditionally set the notify icon back to running after checking for updates. (#203) Closes #201. --- src/Tql.App/Services/Updates/UpdateChecker.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Tql.App/Services/Updates/UpdateChecker.cs b/src/Tql.App/Services/Updates/UpdateChecker.cs index 55c0a90..4572cc1 100644 --- a/src/Tql.App/Services/Updates/UpdateChecker.cs +++ b/src/Tql.App/Services/Updates/UpdateChecker.cs @@ -53,8 +53,7 @@ public bool TryStartUpdate(IProgress progress) } finally { - if (!result) - _notifyIconManager.State = NotifyIconState.Running; + _notifyIconManager.State = NotifyIconState.Running; } return result;