mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Fix broken reference to host store.didUpdate
I'd returned this line because it seemed to fix Firefox compatibility, now it seems like that wasn't the case. Removing it again.
This commit is contained in:
parent
496b6b6e96
commit
5ceed48db9
@ -2,6 +2,8 @@
|
||||
|
||||
## Current Master
|
||||
|
||||
- Fix bug where host store would fail to receive updates.
|
||||
|
||||
## 2.7.1 2016-07-27
|
||||
|
||||
- Fix bug where web3 would sometimes not be injected in time for the application.
|
||||
|
@ -52,7 +52,7 @@ HostStore.prototype.set = function (key, value) {
|
||||
|
||||
HostStore.prototype.createStream = function () {
|
||||
var dnode = Dnode({
|
||||
update: this._didUpdate.bind(this),
|
||||
// update: this._didUpdate.bind(this),
|
||||
})
|
||||
dnode.on('remote', this._didConnect.bind(this))
|
||||
return dnode
|
||||
|
Loading…
Reference in New Issue
Block a user