diff --git a/src/services/browserPlatformUtils.service.ts b/src/services/browserPlatformUtils.service.ts index 6d59d17384..83c1a4a82a 100644 --- a/src/services/browserPlatformUtils.service.ts +++ b/src/services/browserPlatformUtils.service.ts @@ -119,6 +119,11 @@ export default class BrowserPlatformUtilsService implements PlatformUtilsService } isViewOpen(): boolean { + if (this.isSafari()) { + // TODO + return true; + } + const popupOpen = chrome.extension.getViews({ type: 'popup' }).length > 0; if (popupOpen) { return true;