diff --git a/server/controllers/feeds.ts b/server/controllers/feeds.ts index 104fd5dd9..ba5a476e7 100644 --- a/server/controllers/feeds.ts +++ b/server/controllers/feeds.ts @@ -56,8 +56,11 @@ async function generateVideoCommentsFeed (req: express.Request, res: express.Res comments.forEach(comment => { const link = WEBSERVER.URL + comment.getCommentStaticPath() + let title = comment.Video.name + if (comment.Account) title += ` - ${comment.Account.getDisplayName()}` + feed.addItem({ - title: `${comment.Video.name} - ${comment.Account.getDisplayName()}`, + title, id: comment.url, link, content: comment.text,