Skip to content

Commit 813cb68

Browse files
authored
Merge pull request #662 from enkryptcom/fix/missing-await
fix: missing await
2 parents 3706b62 + 712324b commit 813cb68

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/extension/src/libs/updates-state

packages/extension/src/libs/updates-state/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class UpdatesState {
1414
}
1515

1616
async getState(): Promise<IState> {
17-
const state = this.storage.get(StorageKeys.updatesInfo);
17+
const state = await this.storage.get(StorageKeys.updatesInfo);
1818
if (!state) {
1919
const newState: IState = {
2020
lastVersionViewed: '',

0 commit comments

Comments
 (0)