From fa52035574fd6e9d6896b39f683ed67946a73dbd Mon Sep 17 00:00:00 2001 From: Will Norris Date: Wed, 8 Jan 2025 11:08:53 -0800 Subject: [PATCH] client/systray: record that systray is running Updates #1708 Change-Id: Ia101a4a3005adb9118051b3416f5a64a4a45987d Signed-off-by: Will Norris --- client/systray/systray.go | 1 + 1 file changed, 1 insertion(+) diff --git a/client/systray/systray.go b/client/systray/systray.go index 782fc5420..de2a37d8d 100644 --- a/client/systray/systray.go +++ b/client/systray/systray.go @@ -58,6 +58,7 @@ func (menu *Menu) Run() { case <-menu.bgCtx.Done(): } }() + go menu.lc.IncrementCounter(menu.bgCtx, "systray_start", 1) systray.Run(menu.onReady, menu.onExit) }