null check vaulttimeoutservice

This commit is contained in:
Kyle Spearrin 2020-08-04 09:17:25 -04:00
parent bc31867e1a
commit 14b01f2e5d
1 changed files with 3 additions and 1 deletions

View File

@ -325,7 +325,9 @@ export class AuthService implements AuthServiceAbstraction {
await this.cryptoService.setEncPrivateKey(tokenResponse.privateKey);
}
this.vaultTimeoutService.biometricLocked = false;
if (this.vaultTimeoutService != null) {
this.vaultTimeoutService.biometricLocked = false;
}
this.messagingService.send('loggedIn');
return result;
}