We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4154084 commit 231ca25Copy full SHA for 231ca25
src/vector/platform/ElectronPlatform.js
@@ -169,6 +169,11 @@ export default class ElectronPlatform extends VectorBasePlatform {
169
}
170
171
clearNotification(notif: Notification) {
172
+ // This crashes on windows under certain circumstances: can't find any
173
+ // workaround othet 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