Skip to content

Commit

Permalink
Fix Account cache
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelklehr committed May 27, 2018
1 parent 259706a commit fb2abc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Account.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default class Account {
this.cache = {}
}
if (this.cache[id]) {
this.cache[id].updateFromStorage()
await this.cache[id].updateFromStorage()
return this.cache[id]
}
let storage = new AccountStorage(id)
Expand Down

0 comments on commit fb2abc9

Please sign in to comment.