diff options
Fix cache clearing reference for Opera
For some reason Chrome didn't mind this awful bug, but Opera caught it.
Diffstat (limited to 'app/scripts/lib/idStore.js')
-rw-r--r-- | app/scripts/lib/idStore.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/lib/idStore.js b/app/scripts/lib/idStore.js index b5b13a57a..89c0c3abc 100644 --- a/app/scripts/lib/idStore.js +++ b/app/scripts/lib/idStore.js @@ -505,7 +505,7 @@ IdentityStore.prototype.purgeCache = function () { this._currentState.identities = {} let accounts try { - Object.keys(this._ethStore._currentState.accounts) + accounts = Object.keys(this._ethStore._currentState.accounts) } catch (e) { accounts = [] } |