mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
447ab10738
Closes #2992
15 lines
564 B
TypeScript
15 lines
564 B
TypeScript
import { isMobileSafariIos } from './helpers';
|
|
|
|
export function arePushNotificationSupported() {
|
|
return 'Notification' in window && 'serviceWorker' in navigator && 'PushManager' in window;
|
|
}
|
|
|
|
export function canPushNotificationsBeSupported() {
|
|
// Mobile safari will return false for supporting push notifications, but
|
|
// it does support them. So we need to check for mobile safari and return
|
|
// true if it is.
|
|
if (isMobileSafariIos()) {
|
|
return true;
|
|
}
|
|
return 'Notification' in window && 'serviceWorker' in navigator && 'PushManager' in window;
|
|
}
|