diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-07-29 02:53:33 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-07-29 02:53:33 +0800 |
commit | 5ceed48db9a7ff0655d75ac31788fdc48c8c876b (patch) | |
tree | b21f235d58e9146845dda739c777f371d648b61a /app/scripts/lib | |
parent | 496b6b6e96c9e23026b862ee36100cb4f56e9c2f (diff) | |
download | tangerine-wallet-browser-5ceed48db9a7ff0655d75ac31788fdc48c8c876b.tar tangerine-wallet-browser-5ceed48db9a7ff0655d75ac31788fdc48c8c876b.tar.gz tangerine-wallet-browser-5ceed48db9a7ff0655d75ac31788fdc48c8c876b.tar.bz2 tangerine-wallet-browser-5ceed48db9a7ff0655d75ac31788fdc48c8c876b.tar.lz tangerine-wallet-browser-5ceed48db9a7ff0655d75ac31788fdc48c8c876b.tar.xz tangerine-wallet-browser-5ceed48db9a7ff0655d75ac31788fdc48c8c876b.tar.zst tangerine-wallet-browser-5ceed48db9a7ff0655d75ac31788fdc48c8c876b.zip |
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.
Diffstat (limited to 'app/scripts/lib')
-rw-r--r-- | app/scripts/lib/remote-store.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/lib/remote-store.js b/app/scripts/lib/remote-store.js index c81d5151c..fbfab7bad 100644 --- a/app/scripts/lib/remote-store.js +++ b/app/scripts/lib/remote-store.js @@ -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 |