From 65eae18e49ef4214c312f2594e8a79a621d4c066 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 15 Apr 2024 08:56:37 +0200 Subject: Fix tag URI in tagged feeds --- src/templates.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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), ); }); } -- cgit 1.4.1