mirror of https://github.com/vector-im/riot-web
Stop electron crashing
Workaround temporarily by not closing notifs on win32 as per comment. Fixes https://github.com/vector-im/riot-web/issues/7512pull/7517/head
parent
41540842eb
commit
231ca253f2
|
@ -169,6 +169,11 @@ export default class ElectronPlatform extends VectorBasePlatform {
|
||||||
}
|
}
|
||||||
|
|
||||||
clearNotification(notif: Notification) {
|
clearNotification(notif: Notification) {
|
||||||
|
// This crashes on windows under certain circumstances: can't find any
|
||||||
|
// workaround othet 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();
|
notif.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue