diff --git a/src/services/desktopPlatformUtils.service.ts b/src/services/desktopPlatformUtils.service.ts index 35df4ed2dce..0c3b5e4d096 100644 --- a/src/services/desktopPlatformUtils.service.ts +++ b/src/services/desktopPlatformUtils.service.ts @@ -4,7 +4,10 @@ import { shell, } from 'electron'; -import { isDev } from '../scripts/utils'; +import { + isDev, + isMacAppStore, +} from '../scripts/utils'; import { DeviceType } from 'jslib/enums/deviceType'; @@ -73,6 +76,10 @@ export class DesktopPlatformUtilsService implements PlatformUtilsService { return false; } + isMacAppStore(): boolean { + return isMacAppStore(); + } + analyticsId(): string { if (this.analyticsIdCache) { return this.analyticsIdCache;