From ce301fcc77a6b8c75f05288b2716a4ea82b843a4 Mon Sep 17 00:00:00 2001 From: Raven Scott Date: Thu, 26 Sep 2024 00:20:45 -0400 Subject: [PATCH] fix sitemap --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 6e3f88c..71774ee 100644 --- a/app.js +++ b/app.js @@ -271,7 +271,7 @@ app.get('/sitemap.xml', (req, res) => { let sitemap = `\n\n`; urls.forEach(({ url, lastmod, changefreq, priority }) => { sitemap += ` \n`; - sitemap += ` https://${url}\n`; + sitemap += ` ${url}\n`; if (lastmod) { sitemap += ` ${lastmod}\n`; }