Skip to content

Commit

Permalink
Merge pull request #650 from MetaMask/FixCacheBustBug
Browse files Browse the repository at this point in the history
Fix cache clearing reference for Opera
  • Loading branch information
danfinlay authored Sep 13, 2016
2 parents f70bb30 + b508541 commit b4344f2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion app/manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion app/scripts/lib/idStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
}
Expand Down

0 comments on commit b4344f2

Please sign in to comment.