1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Merge pull request #650 from MetaMask/FixCacheBustBug

Fix cache clearing reference for Opera
This commit is contained in:
Dan Finlay 2016-09-12 22:19:14 -07:00 committed by GitHub
commit b4344f2a02
3 changed files with 6 additions and 2 deletions

View File

@ -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.

View File

@ -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",

View File

@ -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 = []
}