Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 80725f2

Browse files
authored
fix: make ping not mix errors with responses (#883)
* fix: make ping not mix errors with responses * chore: update interface-ipfs-core * chore: update interface-ipfs-core
1 parent f382ac0 commit 80725f2

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"eslint-plugin-react": "^7.11.1",
8686
"go-ipfs-dep": "~0.4.17",
8787
"gulp": "^3.9.1",
88-
"interface-ipfs-core": "~0.83.0",
88+
"interface-ipfs-core": "~0.84.2",
8989
"ipfsd-ctl": "~0.39.5",
9090
"pull-stream": "^3.6.9",
9191
"stream-equal": "^1.1.1"

src/ping.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,12 @@ module.exports = (arg) => {
4646
cb()
4747
}
4848
}),
49-
(err) => callback(err, responses)
49+
(err) => {
50+
if (err) {
51+
return callback(err)
52+
}
53+
callback(null, responses)
54+
}
5055
)
5156
}
5257

0 commit comments

Comments
 (0)