diff options
author | kumavis <aaron@kumavis.me> | 2017-01-27 12:18:28 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2017-01-27 12:18:28 +0800 |
commit | fc3a53ec7b2af538d5e9748173fb11b5a09a4e84 (patch) | |
tree | 380ec77e2635f17ede85eaa5ad9aab00a7ec83a7 /app/scripts/lib | |
parent | 2f79781ab9fbdde018fc921da9be0b3411ed8cad (diff) | |
download | tangerine-wallet-browser-fc3a53ec7b2af538d5e9748173fb11b5a09a4e84.tar.gz tangerine-wallet-browser-fc3a53ec7b2af538d5e9748173fb11b5a09a4e84.tar.zst tangerine-wallet-browser-fc3a53ec7b2af538d5e9748173fb11b5a09a4e84.zip |
background - stream disconnection fix
Diffstat (limited to 'app/scripts/lib')
-rw-r--r-- | app/scripts/lib/stream-utils.js | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/app/scripts/lib/stream-utils.js b/app/scripts/lib/stream-utils.js index 1b7b89d14..ba79990cc 100644 --- a/app/scripts/lib/stream-utils.js +++ b/app/scripts/lib/stream-utils.js @@ -1,4 +1,5 @@ const Through = require('through2') +const endOfStream = require('end-of-stream') const ObjectMultiplex = require('./obj-multiplex') module.exports = { @@ -24,11 +25,11 @@ function jsonStringifyStream () { function setupMultiplex (connectionStream) { var mx = ObjectMultiplex() connectionStream.pipe(mx).pipe(connectionStream) - mx.on('error', function (err) { - console.error(err) + endOfStream(mx, function (err) { + if (err) console.error(err) }) - connectionStream.on('error', function (err) { - console.error(err) + endOfStream(connectionStream, function (err) { + if (err) console.error(err) mx.destroy() }) return mx |