From e0a7ace385bc5b61f4dad09880c56823c4677d34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=98=D0=B2=D0=B0=D0=BD?= Date: Wed, 24 Jun 2020 20:10:17 +0300 Subject: [PATCH] :lipstick: Make next song notifications silent --- src/providers/trayProvider.js | 2 ++ 1 file changed, 2 insertions(+) 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, }) }