mikaelbr / node-notifier

A Node.js module for sending notifications on native Mac, Windows and Linux (or Growl as fallback)
MIT License
5.72k stars 323 forks source link

Windows Toast .. remove does not work, close does #431

Open rpav opened 1 year ago

rpav commented 1 year ago

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.