about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2024-04-15 08:56:37 +0200
committerAlan Pearce2024-04-15 08:58:42 +0200
commit65eae18e49ef4214c312f2594e8a79a621d4c066 (patch)
treef32714419925509367f44bcbbe7749e118ab466e
parent158681f4edd81d558024636dfe2bf0f03366c667 (diff)
downloadwebsite-65eae18e49ef4214c312f2594e8a79a621d4c066.tar.lz
website-65eae18e49ef4214c312f2594e8a79a621d4c066.tar.zst
website-65eae18e49ef4214c312f2594e8a79a621d4c066.zip
Fix tag URI in tagged feeds
-rw-r--r--src/templates.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/templates.ts b/src/templates.ts
index 2b6f589..3fa46fe 100644
--- a/src/templates.ts
+++ b/src/templates.ts
@@ -246,7 +246,7 @@ export default async function generateSite() {
       log.debug(`Rendering tag ${tag} feed to public/tags/${tag}/atom.xml`);
       return fs.writeFile(
         `public/tags/${tag}/atom.xml`,
-        await renderFeed(`${config.title} - ${tag}`, matchingPosts),
+        await renderFeed(`${config.title} - ${tag}`, matchingPosts, tag),
       );
     });
   }