meloncholy / mixcloud-rss

MixCloud to RSS converter
http://bits.meloncholy.com/mixcloud-rss
42 stars 9 forks source link

Wrong HTTP content-type #8

Open krmax44 opened 7 years ago

krmax44 commented 7 years ago

Please set the content-type header to either text/xml or application/xml instead of text/html, as many podcast apps will only take valid xml files.

An example snippet on how to do it:

var http = require('http');

http.createServer(function (req, res) {
res.setHeader("content-type", "text/xml");
}).listen(80);