From c3812f1c56a6b5e67aff4ce6d7f3a84144f6cd2e Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 5 May 2021 17:50:15 +0200 Subject: [PATCH] Increase update successful notification TTL --- updates/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updates/main.go b/updates/main.go index 00309621..673369f3 100644 --- a/updates/main.go +++ b/updates/main.go @@ -275,7 +275,7 @@ func checkForUpdates(ctx context.Context) (err error) { Type: notifications.Info, Title: "Update Check Successful", Message: "The Portmaster successfully checked for updates and downloaded any available updates. Most updates are applied automatically. You will be notified of important updates that need restarting.", - Expires: time.Now().Add(20 * time.Second).Unix(), + Expires: time.Now().Add(1 * time.Minute).Unix(), AvailableActions: []*notifications.Action{ { ID: "ack",