fix rss feed content type
This commit is contained in:
@ -115,6 +115,7 @@ module.exports = function(app) {
|
||||
function(stories) {
|
||||
var sliceVal = stories.length >= 100 ? 100 : stories.length;
|
||||
var data = stories.sort(sortByRank).slice(0, sliceVal);
|
||||
res.set('Content-Type', 'text/xml');
|
||||
res.render('feed', {
|
||||
title: 'FreeCodeCamp Camper News RSS Feed',
|
||||
description: 'RSS Feed for FreeCodeCamp Top 100 Hot Camper News',
|
||||
|
Reference in New Issue
Block a user