logout async
This commit is contained in:
parent
d431e53e46
commit
be327e4f5a
2
jslib
2
jslib
|
@ -1 +1 @@
|
|||
Subproject commit 7112911cb89bcf9bf9b9de32cb05ec2d3f78e3fc
|
||||
Subproject commit 799c90af1702c681874cb8fce8f8adcf1049d0c8
|
|
@ -122,7 +122,7 @@ export default class MainBackground {
|
|||
this.tokenService = new TokenService(this.storageService);
|
||||
this.appIdService = new AppIdService(this.storageService);
|
||||
this.apiService = new ApiService(this.tokenService, this.platformUtilsService,
|
||||
(expired: boolean) => this.logout(expired));
|
||||
async (expired: boolean) => await this.logout(expired));
|
||||
this.environmentService = new EnvironmentService(this.apiService, this.storageService);
|
||||
this.userService = new UserService(this.tokenService, this.storageService);
|
||||
this.settingsService = new SettingsService(this.userService, this.storageService);
|
||||
|
@ -139,7 +139,7 @@ export default class MainBackground {
|
|||
});
|
||||
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(expired));
|
||||
this.storageService, this.messagingService, async (expired: boolean) => await this.logout(expired));
|
||||
this.passwordGenerationService = new PasswordGenerationService(this.cryptoService, this.storageService);
|
||||
this.totpService = new TotpService(this.storageService, cryptoFunctionService);
|
||||
this.autofillService = new AutofillService(this.cipherService, this.tokenService,
|
||||
|
|
Loading…
Reference in New Issue