mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
always read from source
This commit is contained in:
parent
c512b9b3ce
commit
9b3fddbd33
@ -35,7 +35,7 @@ export class LowdbStorageService implements StorageService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get<T>(key: string): Promise<T> {
|
get<T>(key: string): Promise<T> {
|
||||||
const val = this.db.get(key).value();
|
const val = this.db.read().get(key).value();
|
||||||
if (val == null) {
|
if (val == null) {
|
||||||
return Promise.resolve(null);
|
return Promise.resolve(null);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user