fix: category RSS feed was displaying deleted topics

v1.18.x
psychobunny 5 years ago
parent 45aceb26a5
commit 9a5b8a798a

@ -279,6 +279,10 @@ async function generateTopicsFeed(feedOptions, feedTopics) {
date: new Date(topicData.lastposttime).toUTCString(),
};
if (topicData.deleted) {
return;
}
if (topicData.teaser && topicData.teaser.user && !feedOptions.useMainPost) {
feedItem.description = topicData.teaser.content;
feedItem.author = topicData.teaser.user.username;

Loading…
Cancel
Save