From f87c8e89e8a7fb5a01383b6bbf03912783d666a2 Mon Sep 17 00:00:00 2001 From: Viktor Liu Date: Wed, 29 Jul 2026 15:14:54 +0200 Subject: [PATCH] Exclude the notifier response callback from generated bindings --- client/ui/notifier.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/ui/notifier.go b/client/ui/notifier.go index b4b0546ff..71ae3b0df 100644 --- a/client/ui/notifier.go +++ b/client/ui/notifier.go @@ -94,6 +94,8 @@ func (n *Notifier) RegisterNotificationCategory(category notifications.Notificat // OnNotificationResponse registers the response callback. Pure Go state, so // it is safe (and simply inert) when the backend never started. +// +//wails:ignore func (n *Notifier) OnNotificationResponse(callback func(result notifications.NotificationResult)) { n.inner.OnNotificationResponse(callback) }