From 3373de40a8f1acbdabf11f0cb0ff4392e9af8e5c Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 30 May 2018 22:42:13 -0400 Subject: [PATCH] restore isDev check on analytics --- src/app/services.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/services.module.ts b/src/app/services.module.ts index f1b4968011..65c19a29a7 100644 --- a/src/app/services.module.ts +++ b/src/app/services.module.ts @@ -105,7 +105,7 @@ const authService = new AuthService(cryptoService, apiService, const exportService = new ExportService(folderService, cipherService); const auditService = new AuditService(cryptoFunctionService); -const analytics = new Analytics(window, () => false, platformUtilsService, storageService, appIdService); +const analytics = new Analytics(window, () => isDev(), platformUtilsService, storageService, appIdService); containerService.attachToWindow(window); environmentService.setUrlsFromStorage().then(() => { return syncService.fullSync(true);