From 0e5f405b536f66db84c6a80041b9eb7be6b38d45 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Thu, 14 Mar 2019 11:58:26 -0700 Subject: [PATCH] Remove unnecessary 'tag' from Notification construction --- js/notifications.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/js/notifications.js b/js/notifications.js index 2860e8d2c..f5900592c 100644 --- a/js/notifications.js +++ b/js/notifications.js @@ -137,15 +137,13 @@ drawAttention(); - const notification = new Notification(title, { + this.lastNotification = new Notification(title, { body: message, icon: iconUrl, - tag: isNotificationGroupingSupported ? 'signal' : undefined, silent: !status.shouldPlayNotificationSound, }); - notification.onclick = () => + this.lastNotification.onclick = () => this.trigger('click', last.conversationId, last.id); - this.lastNotification = notification; // We continue to build up more and more messages for our notifications // until the user comes back to our app or closes the app. Then we’ll