Fix tag URI in tagged feeds
Alan Pearce alan@alanpearce.eu
Mon, 15 Apr 2024 08:56:37 +0200
1 files changed, 1 insertions(+), 1 deletions(-)
jump to
M src/templates.ts → src/templates.ts
@@ -246,7 +246,7 @@ tasks.push(async () => { 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), ); }); }