From 94f245f035e14986f28aa5c464767b8cdbf01487 Mon Sep 17 00:00:00 2001 From: popaprozac Date: Thu, 20 Mar 2025 13:49:49 -0700 Subject: [PATCH] bug fix --- v3/pkg/services/notifications/notifications_darwin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v3/pkg/services/notifications/notifications_darwin.go b/v3/pkg/services/notifications/notifications_darwin.go index 0be1fd10c..8ebbff35d 100644 --- a/v3/pkg/services/notifications/notifications_darwin.go +++ b/v3/pkg/services/notifications/notifications_darwin.go @@ -315,7 +315,7 @@ func (dn *darwinNotifier) RemoveNotification(identifier string) error { //export captureResult func captureResult(channelID C.int, success C.bool, errorMsg *C.char) { ns := getNotificationService() - if ns != nil { + if ns == nil { return }