logout async

This commit is contained in:
Kyle Spearrin 2018-05-15 23:40:40 -04:00
parent 6663731630
commit 50a019946e
2 changed files with 3 additions and 3 deletions

2
jslib

@ -1 +1 @@
Subproject commit 7112911cb89bcf9bf9b9de32cb05ec2d3f78e3fc
Subproject commit 799c90af1702c681874cb8fce8f8adcf1049d0c8

View File

@ -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,