Hi guys!
I was trying to make notifications with buttons on windows 10 (v1909) using this code:
notifier.notify( { title: 'title', message: 'message', icon: paths.appIconPath, actions: ['Close', 'Settings'], });
It worked, but I noticed that there is always a 'SnoreToast' message at the bottom of the notification. After some googling, I found that to hide this message I need to also provide an 'appID' parameter to the notify function. But when I provide it, the buttons disseaper. This code should possibly work, but it doesnt't:
notifier.notify( { title: 'title', message: 'message', icon: paths.appIconPath, actions: ['Close', 'Settings'], appID: 'SomeAppId' });
Am I missing something?