From e0aad2962c2e9bc712a44d4cf11da13fcb977e62 Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 6 Oct 2023 12:11:17 +0200 Subject: [PATCH] Improve update check notification --- updates/notify.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updates/notify.go b/updates/notify.go index 3f9a22b6..fbd425ef 100644 --- a/updates/notify.go +++ b/updates/notify.go @@ -32,7 +32,7 @@ func notifyUpdateSuccess(forced bool) { // Show notification if there are pending downloads. flavor = updateSuccessPending case updateState.LastDownloadAt != nil && - time.Since(*updateState.LastDownloadAt) < time.Minute: + time.Since(*updateState.LastDownloadAt) < 5*time.Second: // Show notification if we downloaded something within the last minute. flavor = updateSuccessDownloaded case forced: