diff --git a/src/providers/trayProvider.js b/src/providers/trayProvider.js index a800a681c..641b13093 100644 --- a/src/providers/trayProvider.js +++ b/src/providers/trayProvider.js @@ -87,10 +87,12 @@ function _doNotification(title, content, image) { icon: image, title: title, content: content, + noSound = true, }) } else { new Notification(title, { body: content, + silent = true, icon: image, }) }