From 8d13575000472f3b2b67d00c915612cef411b5c7 Mon Sep 17 00:00:00 2001 From: Drew Weymouth Date: Wed, 29 Mar 2023 18:19:23 -0700 Subject: [PATCH] forgot to stop ticket --- backend/updatechecker.go | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/updatechecker.go b/backend/updatechecker.go index 6b23870..44d1bed 100644 --- a/backend/updatechecker.go +++ b/backend/updatechecker.go @@ -32,6 +32,7 @@ func (u *UpdateChecker) Start(ctx context.Context, interval time.Duration) { for { select { case <-ctx.Done(): + t.Stop() return case <-t.C: u.checkForUpdate()