We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 47493fa + 2854c09 commit c1dfbd6Copy full SHA for c1dfbd6
src/vector/platform/ElectronPlatform.js
@@ -143,7 +143,6 @@ export default class ElectronPlatform extends VectorBasePlatform {
143
{
144
body: msg,
145
icon: avatarUrl,
146
- tag: 'vector',
147
silent: true, // we play our own sounds
148
},
149
);
@@ -169,11 +168,6 @@ export default class ElectronPlatform extends VectorBasePlatform {
169
168
}
170
171
clearNotification(notif: Notification) {
172
- // This crashes on windows under certain circumstances: can't find any
173
- // workaround other than not closing notifs.
174
- // https://github.com/electron/electron/issues/15251
175
- // https://github.com/vector-im/riot-web/issues/7512
176
- if (window.process.platform === 'win32') return;
177
notif.close();
178
179
0 commit comments