Skip to content

Commit b4344f2

Browse files
authored
Merge pull request #650 from MetaMask/FixCacheBustBug
Fix cache clearing reference for Opera
2 parents f70bb30 + b508541 commit b4344f2

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Current Master
44

5+
## 2.11.1 2016-09-12
6+
7+
- Fix bug that prevented caches from being cleared in Opera.
8+
59
## 2.11.0 2016-09-12
610

711
- Fix bug where pending transactions from Test net (or other networks) show up In Main net.

app/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "MetaMask",
33
"short_name": "Metamask",
4-
"version": "2.11.0",
4+
"version": "2.11.1",
55
"manifest_version": 2,
66
"author": "https://metamask.io",
77
"description": "Ethereum Browser Extension",

app/scripts/lib/idStore.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ IdentityStore.prototype.purgeCache = function () {
505505
this._currentState.identities = {}
506506
let accounts
507507
try {
508-
Object.keys(this._ethStore._currentState.accounts)
508+
accounts = Object.keys(this._ethStore._currentState.accounts)
509509
} catch (e) {
510510
accounts = []
511511
}

0 commit comments

Comments
 (0)