mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
Must await to get stored value (#1899)
This commit is contained in:
parent
c19d4f882d
commit
5251ed2853
@ -20,7 +20,7 @@ export default class BrowserStorageService implements StorageService {
|
||||
}
|
||||
|
||||
async has(key: string): Promise<boolean> {
|
||||
return this.get(key) != null;
|
||||
return await this.get(key) != null;
|
||||
}
|
||||
|
||||
async save(key: string, obj: any): Promise<any> {
|
||||
|
Loading…
Reference in New Issue
Block a user