From d0fcf3c9520350472fa8f80e0578d6d968c275d7 Mon Sep 17 00:00:00 2001 From: David Baker Date: Thu, 18 Oct 2018 19:07:59 +0100 Subject: [PATCH] Don't set tags on notifications They are to suppress notifications that don't want to be shown in addition to each other. This makes no sense for our notifications: they're each for independent messages. Also settings tags on notifications makes electron crash on windows when you close the notif, as per https://github.com/vector-im/riot-web/issues/7512 --- src/vector/platform/ElectronPlatform.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/vector/platform/ElectronPlatform.js b/src/vector/platform/ElectronPlatform.js index 9275a4a8ad..5ced2a2ad0 100644 --- a/src/vector/platform/ElectronPlatform.js +++ b/src/vector/platform/ElectronPlatform.js @@ -143,7 +143,6 @@ export default class ElectronPlatform extends VectorBasePlatform { { body: msg, icon: avatarUrl, - tag: 'vector', silent: true, // we play our own sounds }, ); @@ -169,11 +168,6 @@ export default class ElectronPlatform extends VectorBasePlatform { } clearNotification(notif: Notification) { - // This crashes on windows under certain circumstances: can't find any - // workaround other than not closing notifs. - // https://github.com/electron/electron/issues/15251 - // https://github.com/vector-im/riot-web/issues/7512 - if (window.process.platform === 'win32') return; notif.close(); }