1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 23:33:31 +00:00

Fix lockGuard logic (#384)

* Fix lockGuard logic

* add missing return values
This commit is contained in:
Thomas Rittson
2021-05-20 21:05:17 +10:00
committed by GitHub
parent 3ab710389b
commit 5f1ad85dd1

View File

@@ -13,17 +13,18 @@ export class LockGuardService implements CanActivate {
private router: Router) { }
async canActivate() {
const locked = await this.vaultTimeoutService.isLocked();
if (!locked) {
const isAuthed = await this.userService.isAuthenticated();
if (!isAuthed) {
this.router.navigate(['login']);
const isAuthed = await this.userService.isAuthenticated();
if (isAuthed) {
const locked = await this.vaultTimeoutService.isLocked();
if (locked) {
return true;
} else {
this.router.navigate(['vault']);
return false;
}
return false;
}
return true;
this.router.navigate(['']);
return false;
}
}