1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Merge pull request #500 from MetaMask/FixRemoteStoreBug

Fix broken reference to host store.didUpdate
This commit is contained in:
Dan Finlay 2016-07-28 13:16:59 -07:00 committed by GitHub
commit 0b41248743
2 changed files with 3 additions and 1 deletions

View File

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

View File

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