mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-22 17:33:23 +01:00
Fix cache clearing reference for Opera
For some reason Chrome didn't mind this awful bug, but Opera caught it.
This commit is contained in:
parent
f70bb30d2c
commit
b508541935
@ -2,6 +2,10 @@
|
||||
|
||||
## Current Master
|
||||
|
||||
## 2.11.1 2016-09-12
|
||||
|
||||
- Fix bug that prevented caches from being cleared in Opera.
|
||||
|
||||
## 2.11.0 2016-09-12
|
||||
|
||||
- Fix bug where pending transactions from Test net (or other networks) show up In Main net.
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "MetaMask",
|
||||
"short_name": "Metamask",
|
||||
"version": "2.11.0",
|
||||
"version": "2.11.1",
|
||||
"manifest_version": 2,
|
||||
"author": "https://metamask.io",
|
||||
"description": "Ethereum Browser Extension",
|
||||
|
@ -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 = []
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user