git ssb

30+

cel / git-ssb-web



Commit 8cbe5ad597233971b4c3e3f485652b6362e6f068

Merge branch 'master' of ssb://%q5d5Du+9WkaSdjc8aJPZm+jMrqgo0tmfR+RcX5ZZ6H4=.sha256

Ev Bogue committed on 7/5/2016, 11:41:37 PM
Parent: 23fd0e96f5d3428c5da449cebc49cd30b9b9d8be
Parent: a934d76192a1ee2f6cfe393a5a601c978140c756

Files changed

lib/votes.jschanged
package.jsonchanged
lib/votes.jsView
@@ -22,14 +22,18 @@
2222 }
2323 pull(
2424 sbot.links(opts),
2525 pull.drain(processMsg, function (err) {
26- cb(err, result)
26 + if (err) return cb(err)
27 + cb(null, result)
2728 // keep the result updated
2829 opts.live = true
30 + opts.gte = Date.now()
2931 pull(
3032 sbot.links(opts),
31- pull.drain(processMsg)
33 + pull.drain(processMsg, function (err) {
34 + if (err) console.error('votes', err)
35 + })
3236 )
3337 })
3438 )
3539
package.jsonView
@@ -1,7 +1,7 @@
11 {
22 "name": "git-ssb-web",
3- "version": "1.15.2",
3 + "version": "1.15.3",
44 "description": "web server for browsing git repos on ssb",
55 "bin": "server.js",
66 "dependencies": {
77 "asyncmemo": "^0.1.0",

Built with git-ssb-web