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

dont set setCryptoKeys to null

This commit is contained in:
Kyle Spearrin
2020-09-15 16:27:28 -04:00
parent 5994637522
commit b91b5b5be0
2 changed files with 2 additions and 2 deletions

View File

@@ -157,7 +157,7 @@ export default class MainBackground {
this.userService = new UserService(this.tokenService, this.storageService);
this.authService = new AuthService(this.cryptoService, this.apiService, this.userService,
this.tokenService, this.appIdService, this.i18nService, this.platformUtilsService,
this.messagingService, this.vaultTimeoutService, null);
this.messagingService, this.vaultTimeoutService);
this.settingsService = new SettingsService(this.userService, this.storageService);
this.cipherService = new CipherService(this.cryptoService, this.userService, this.settingsService,
this.apiService, this.storageService, this.i18nService, () => this.searchService);