mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 12:28:50 +03:00
Don't always claim we have notif support
Only if the browser has the Notification API
This commit is contained in:
parent
757604fd60
commit
6aba9f8eda
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ export default class WebPlatform extends BasePlatform {
|
||||||
* notifications, otherwise false.
|
* notifications, otherwise false.
|
||||||
*/
|
*/
|
||||||
supportsNotifications() : boolean {
|
supportsNotifications() : boolean {
|
||||||
return true;
|
return Boolean(global.Notification);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue