-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
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);
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels