From 50cc62e2aafa6bf249407e2ced17d35e1139a3c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Tue, 19 Dec 2017 12:27:19 -0500 Subject: [PATCH] fix rss feed on topic #6184 --- src/controllers/topics.js | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/controllers/topics.js b/src/controllers/topics.js index 4ecaf7486e..13228f5779 100644 --- a/src/controllers/topics.js +++ b/src/controllers/topics.js @@ -257,17 +257,20 @@ function addTags(topicData, req, res) { addOGImageTags(res, topicData, postAtIndex); res.locals.linkTags = [ - { - rel: 'alternate', - type: 'application/rss+xml', - href: topicData.rssFeedUrl, - }, { rel: 'canonical', href: nconf.get('url') + '/topic/' + topicData.slug, }, ]; + if (!topicData['feeds:disableRSS']) { + res.locals.linkTags.push({ + rel: 'alternate', + type: 'application/rss+xml', + href: topicData.rssFeedUrl, + }); + } + if (topicData.category) { res.locals.linkTags.push({ rel: 'up',