From c1d19776608f9708e1117f5c8feb7446d5942c09 Mon Sep 17 00:00:00 2001 From: Anders Rune Jensen Date: Thu, 29 Jun 2017 21:37:25 +0200 Subject: [PATCH] Don't die in invalid user-feed link --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index f59e668..b332905 100644 --- a/index.js +++ b/index.js @@ -158,7 +158,7 @@ exports.init = function (sbot, config) { } }) - serveFeeds(req, res, following, channelSubscriptions, feedId, 'user feed ' + about.name) + serveFeeds(req, res, following, channelSubscriptions, feedId, 'user feed ' + (about ? about.name : "")) }) ) })