Old safari doesn't support BroadcastChannel (#3402)

Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
This commit is contained in:
Denis Bykhov 2023-06-08 15:57:11 +06:00 committed by GitHub
parent 6336f2901c
commit 1a53af053c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ function syncDrafts (): void {
// #region Broadcast
const bc = BroadcastChannel !== undefined ? new BroadcastChannel(activeDraftsKey) : undefined
const bc = 'BroadcastChannel' in window ? new BroadcastChannel(activeDraftsKey) : undefined
type BroadcastMessage = BroadcastGetMessage | BroadcastGetResp | BroadcastAddMessage | BroadcastRemoveMessage