From 2cb0dac6484a571594931ba6eb3d198095e0436d Mon Sep 17 00:00:00 2001 From: popaprozac Date: Fri, 14 Mar 2025 19:13:58 -0700 Subject: [PATCH] set default action id on MATE --- v3/pkg/services/notifications/notifications_linux.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/v3/pkg/services/notifications/notifications_linux.go b/v3/pkg/services/notifications/notifications_linux.go index b9e60a971..58d78c2e9 100644 --- a/v3/pkg/services/notifications/notifications_linux.go +++ b/v3/pkg/services/notifications/notifications_linux.go @@ -278,6 +278,10 @@ func (n *internalNotifier) handleActionInvoked(systemID uint32, actionKey string n.Unlock() if notifID != "" && NotificationService != nil { + if actionKey == "default" { + actionKey = DefaultActionIdentifier + } + // First, send the action response with the user data response := NotificationResponse{ ID: notifID,