git ssb

7+

dinoworm 🐛 / patchcore



Commit d7320505206723ecc3f1c6fa2d701d0ebdc057b5

feed.pull.rollup: fix typo

Matt McKegg committed on 6/21/2017, 12:35:14 AM
Parent: aeffed8b04f94878e4481ca09cd5359940c55102

Files changed

feed/pull/rollup.jschanged
feed/pull/rollup.jsView
@@ -44,9 +44,9 @@
4444 pull(
4545 api.sbot.pull.backlinks({
4646 query: [{$filter: { dest: rootMessage.key }}]
4747 }),
48- pull.filter(msg => api.message.sync.root(msg) || rootMessage.key === rootMessage.key),
48 + pull.filter(msg => (api.message.sync.root(msg) || rootMessage.key) === rootMessage.key),
4949 pull.collect((err, replies) => {
5050 if (err) return cb(err)
5151 cb(null, extend(rootMessage, { replies }))
5252 })

Built with git-ssb-web