We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b61edc0 commit f335e2fCopy full SHA for f335e2f
chrome-extension/manifest.json
@@ -1,7 +1,7 @@
1
{
2
"manifest_version": 3,
3
"name": "LC Predictor",
4
- "version": "1.0.0",
+ "version": "1.0.1",
5
6
"short_name": "LC Predictor",
7
"background": {
controllers/sitemapController.js
@@ -49,6 +49,8 @@ const getURLsCollection = async () => {
49
let sitemapXML;
50
exports.get = async function (req, res) {
51
res.header("Content-Encoding", "gzip");
52
+ res.set("Content-Type", "application/xml");
53
+
54
// if we have a cached entry send it
55
if (sitemapXML) {
56
res.send(sitemapXML);
0 commit comments