node-notifier icon indicating copy to clipboard operation
node-notifier copied to clipboard

Windows Toast .. remove does not work, close does

Open rpav opened this issue 2 years ago • 0 comments

The title says it all:

notifier.notify({
    title: 'foo',
    msg: 'bar',
    id: 1,
});

// No:
notifier.notify({ remove: 1 });

// Yes:
notifier.notify({ close: 1 });

snoreToast uses -close, but I haven't looked at node-notifier's code to see if this is related.

rpav avatar Feb 18 '23 17:02 rpav