1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-24 12:06:15 +01:00

fix keyhash storage

This commit is contained in:
Kyle Spearrin 2019-04-13 21:26:16 -04:00
parent b7a736294b
commit 3d958279d2

View File

@ -101,7 +101,7 @@ export class CryptoService implements CryptoServiceAbstraction {
return this.keyHash;
}
const keyHash = await this.secureStorageService.get<string>(Keys.keyHash);
const keyHash = await this.storageService.get<string>(Keys.keyHash);
if (keyHash != null) {
this.keyHash = keyHash;
}