2018-07-21 17:27:00 +02:00
|
|
|
--- a/src/app/services/services.module.ts
|
|
|
|
+++ b/src/app/services/services.module.ts
|
2018-08-14 22:48:56 +02:00
|
|
|
@@ -116,17 +116,15 @@ const exportService = new ExportService(folderService, cipherService, apiService
|
|
|
|
const importService = new ImportService(cipherService, folderService, apiService, i18nService, collectionService);
|
|
|
|
const auditService = new AuditService(cryptoFunctionService, apiService);
|
|
|
|
|
|
|
|
-const analytics = new Analytics(window, () => platformUtilsService.isDev() || platformUtilsService.isSelfHost(),
|
|
|
|
+const analytics = new Analytics(window, () => platformUtilsService.isDev() || platformUtilsService.isSelfHost() || true,
|
|
|
|
platformUtilsService, storageService, appIdService);
|
|
|
|
containerService.attachToWindow(window);
|
|
|
|
|
2018-07-21 17:27:00 +02:00
|
|
|
export function initFactory(): Function {
|
|
|
|
return async () => {
|
2018-08-09 14:38:40 +02:00
|
|
|
await (storageService as HtmlStorageService).init();
|
2018-07-21 17:27:00 +02:00
|
|
|
- const isDev = platformUtilsService.isDev();
|
|
|
|
- if (!isDev && platformUtilsService.isSelfHost()) {
|
|
|
|
- environmentService.baseUrl = window.location.origin;
|
|
|
|
- }
|
|
|
|
+ const isDev = false;
|
|
|
|
+ environmentService.baseUrl = window.location.origin;
|
|
|
|
await apiService.setUrls({
|
|
|
|
base: isDev ? null : window.location.origin,
|
|
|
|
api: isDev ? 'http://localhost:4000' : null,
|