fix: category RSS feed was displaying deleted topics

This commit is contained in:
psychobunny
2020-10-09 12:39:51 -04:00
parent 45aceb26a5
commit 9a5b8a798a

View File

@@ -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;