(hotfix) remove null categories in RSS/Atom feeds
This commit is contained in:
parent
39aad8cc85
commit
857e5e2340
|
@ -156,7 +156,7 @@ async function generateVideoFeed (req: express.Request, res: express.Response) {
|
||||||
categories: [video.category ? {
|
categories: [video.category ? {
|
||||||
value: video.category,
|
value: video.category,
|
||||||
label: VideoModel.getCategoryLabel(video.category)
|
label: VideoModel.getCategoryLabel(video.category)
|
||||||
} : null],
|
} : null].filter(Boolean),
|
||||||
community: {
|
community: {
|
||||||
statistics: {
|
statistics: {
|
||||||
views: video.views
|
views: video.views
|
||||||
|
|
Loading…
Reference in New Issue