Fix handling error from getAbout

This commit is contained in:
cel
2017-05-14 16:29:54 -10:00
parent 445c573510
commit 2e5ff5d30a
+1 -1
View File
@@ -94,7 +94,7 @@ exports.init = function (sbot, config) {
console.log("serving feed: " + feedId) console.log("serving feed: " + feedId)
getAbout(feedId, function (err, about) { getAbout(feedId, function (err, about) {
if (err) return cb(err) if (err) return respond(res, 500, err.stack || err)
pull( pull(
sbot.createUserStream({ id: feedId, reverse: true }), sbot.createUserStream({ id: feedId, reverse: true }),