git ssb

0+

cel / ssb-issues



Commit 7244950c775193fa38c94a7707a77a3e556cde74

Ensure that opts filter is valid

Charles Lehner committed on 6/2/2016, 6:03:37 PM
Parent: 42a68b9d00a60a49e9704e5f92838cd30a216274

Files changed

index.jschanged
index.jsView
@@ -197,9 +197,9 @@
197197 }),
198198 paramap(function (msg, cb) {
199199 getIssue(msg.key, cb)
200200 }, 8),
201- opts.open != null && pull.filter(function (pr) {
201+ pull.filter(opts.open == null || function (pr) {
202202 return pr.open == opts.open
203203 })
204204 )
205205 }

Built with git-ssb-web