mirror of https://github.com/Chocobozzz/PeerTube
Fix comments feed
parent
3cf53828db
commit
65d2ae2a61
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue