From 467587e2420b89d3cfa20df17777b6a8dcbe7c80 Mon Sep 17 00:00:00 2001 From: James Shiffer <2191476+scoliono@users.noreply.github.com> Date: Thu, 10 Sep 2020 19:51:54 -0700 Subject: [PATCH] forgot this too --- src/routes/rss.xml.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/routes/rss.xml.js b/src/routes/rss.xml.js index 5829541..3cde28b 100644 --- a/src/routes/rss.xml.js +++ b/src/routes/rss.xml.js @@ -25,6 +25,8 @@ export async function get(req, res) }); } - res.writeHead(200); + res.writeHead(200, { + 'Content-Type': 'application/rss+xml' + }); res.end(feed.xml()); }