mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
logout async
This commit is contained in:
parent
6663731630
commit
50a019946e
2
jslib
2
jslib
@ -1 +1 @@
|
||||
Subproject commit 7112911cb89bcf9bf9b9de32cb05ec2d3f78e3fc
|
||||
Subproject commit 799c90af1702c681874cb8fce8f8adcf1049d0c8
|
@ -66,7 +66,7 @@ export class Main {
|
||||
this.tokenService = new TokenService(this.storageService);
|
||||
this.messagingService = new NoopMessagingService();
|
||||
this.apiService = new NodeApiService(this.tokenService, this.platformUtilsService,
|
||||
(expired: boolean) => { this.logout(); });
|
||||
async (expired: boolean) => await this.logout());
|
||||
this.environmentService = new EnvironmentService(this.apiService, this.storageService);
|
||||
this.userService = new UserService(this.tokenService, this.storageService);
|
||||
this.containerService = new ContainerService(this.cryptoService, this.platformUtilsService);
|
||||
@ -82,7 +82,7 @@ export class Main {
|
||||
() => { /* do nothing */ });
|
||||
this.syncService = new SyncService(this.userService, this.apiService, this.settingsService,
|
||||
this.folderService, this.cipherService, this.cryptoService, this.collectionService,
|
||||
this.storageService, this.messagingService, (expired: boolean) => { this.logout(); });
|
||||
this.storageService, this.messagingService, async (expired: boolean) => await this.logout());
|
||||
this.passwordGenerationService = new PasswordGenerationService(this.cryptoService, this.storageService);
|
||||
this.totpService = new TotpService(this.storageService, this.cryptoFunctionService);
|
||||
this.authService = new AuthService(this.cryptoService, this.apiService, this.userService, this.tokenService,
|
||||
|
Loading…
Reference in New Issue
Block a user