1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-08-25 23:03:07 +02:00

use hasKey helper

This commit is contained in:
Kyle Spearrin 2018-06-13 17:19:58 -04:00
parent 010188545e
commit 2cbb7788f4
2 changed files with 4 additions and 4 deletions

View File

@ -210,12 +210,12 @@ export default class MainBackground {
} }
const isAuthenticated = await this.userService.isAuthenticated(); const isAuthenticated = await this.userService.isAuthenticated();
const key = await this.cryptoService.getKey(); const hasKey = await this.cryptoService.hasKey();
let suffix = ''; let suffix = '';
if (!isAuthenticated) { if (!isAuthenticated) {
suffix = '_gray'; suffix = '_gray';
} else if (!key) { } else if (!hasKey) {
suffix = '_locked'; suffix = '_locked';
} }

View File

@ -24,8 +24,8 @@ export class LaunchGuardService implements CanActivate {
return true; return true;
} }
const key = await this.cryptoService.getKey(); const hasKey = await this.cryptoService.hasKey();
if (key == null) { if (!hasKey) {
this.router.navigate(['lock']); this.router.navigate(['lock']);
} else { } else {
this.router.navigate(['tabs/current']); this.router.navigate(['tabs/current']);