~whereswaldon/gio-x

e6edded127b573bdcf672399723d71d610894573 — Chris Waldon 5 months ago 087d853
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()
}