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

Commit 5a1bf9b

Browse files
richardschneiderdaviddias
authored andcommitted
fix: pubsub do not eat error messages (#632)
* fix: allow topicCIDs from older peers * fix: do not eat pubsub message error * fix: lint errors
1 parent 21596c7 commit 5a1bf9b

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

src/pubsub.js

+1
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ module.exports = (arg) => {
120120

121121
function subscribe (topic, options, handler, callback) {
122122
ps.on(topic, handler)
123+
123124
if (subscriptions[topic]) {
124125
// TODO: should a callback error be returned?
125126
return callback()

src/utils/pubsub-message-stream.js

+9-8
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,18 @@ class PubsubMessageStream extends TransformStream {
1616
}
1717

1818
_transform (obj, enc, callback) {
19-
let msg
20-
try {
21-
msg = PubsubMessage.deserialize(obj, 'base64')
22-
} catch (err) {
23-
// Not a valid pubsub message
24-
// go-ipfs returns '{}' as the very first object atm, we skip that
19+
// go-ipfs returns '{}' as the very first object atm, we skip that
20+
if (Object.keys(obj).length === 0) {
2521
return callback()
2622
}
2723

28-
this.push(msg)
29-
callback()
24+
try {
25+
const msg = PubsubMessage.deserialize(obj, 'base64')
26+
this.push(msg)
27+
callback()
28+
} catch (err) {
29+
return callback(err)
30+
}
3031
}
3132
}
3233

0 commit comments

Comments
 (0)