1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

set user key once we detect session key (#9084)

This commit is contained in:
Jake Fink
2024-05-08 14:48:49 -04:00
committed by GitHub
parent a42de41587
commit b4257e1c1c
2 changed files with 12 additions and 3 deletions

View File

@@ -701,6 +701,8 @@ export class Main {
this.organizationExportService,
);
this.userAutoUnlockKeyService = new UserAutoUnlockKeyService(this.cryptoService);
this.auditService = new AuditService(this.cryptoFunctionService, this.apiService);
this.program = new Program(this);
this.vaultProgram = new VaultProgram(this);
@@ -724,8 +726,6 @@ export class Main {
);
this.providerApiService = new ProviderApiService(this.apiService);
this.userAutoUnlockKeyService = new UserAutoUnlockKeyService(this.cryptoService);
}
async run() {