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 <christopher.waldon.dev@gmail.com>
1 files changed, 4 insertions(+), 4 deletions(-) M notify/notify_windows.go
M notify/notify_windows.go => notify/notify_windows.go +4 -4
@@ 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() }