From 45806ed8d82f07b421467ab99f65a550d641434c Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Fri, 6 Sep 2024 19:00:50 +0200 Subject: [PATCH] Add fallbackbulkencryptservice to main.background.ts (#10696) --- apps/browser/src/background/main.background.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/browser/src/background/main.background.ts b/apps/browser/src/background/main.background.ts index e451b55c9e..df1e479656 100644 --- a/apps/browser/src/background/main.background.ts +++ b/apps/browser/src/background/main.background.ts @@ -782,6 +782,8 @@ export default class MainBackground { this.authService, ); + this.bulkEncryptService = new FallbackBulkEncryptService(this.encryptService); + this.cipherService = new CipherService( this.cryptoService, this.domainSettingsService,