geforkt von mirrored/vaultwarden
Disable analytics via patch to Vault
Dieser Commit ist enthalten in:
Ursprung
f1ade62638
Commit
5ecafb157d
1 geänderte Dateien mit 9 neuen und 1 gelöschten Zeilen
|
@ -1,6 +1,14 @@
|
||||||
--- a/src/app/services/services.module.ts
|
--- a/src/app/services/services.module.ts
|
||||||
+++ b/src/app/services/services.module.ts
|
+++ b/src/app/services/services.module.ts
|
||||||
@@ -119,10 +119,8 @@
|
@@ -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);
|
||||||
|
|
||||||
export function initFactory(): Function {
|
export function initFactory(): Function {
|
||||||
return async () => {
|
return async () => {
|
||||||
await (storageService as HtmlStorageService).init();
|
await (storageService as HtmlStorageService).init();
|
||||||
|
|
Laden …
In neuem Issue referenzieren