From e6edded127b573bdcf672399723d71d610894573 Mon Sep 17 00:00:00 2001 From: Chris Waldon Date: Wed, 19 Apr 2023 15:02:34 -0400 Subject: [PATCH] notify: fix windows build problem This commit fixes an outdated field reference preventing this package from compiling properly on windows. Signed-off-by: Chris Waldon --- notify/notify_windows.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/notify/notify_windows.go b/notify/notify_windows.go index ca65e44..882efd8 100644 --- a/notify/notify_windows.go +++ b/notify/notify_windows.go @@ -23,10 +23,10 @@ func newNotifier() (Notifier, error) { // Note; cancellation is not implemented. func (m *windowsNotifier) CreateNotification(title, text string) (Notification, error) { return noop{}, (&toast.Notification{ - AppID: title, - Title: title, - Message: text, - Icon: m.icon, + AppID: title, + Title: title, + Body: text, + Icon: m.icon, }).Push() } -- 2.45.2