Fix tag URI in tagged feeds
1 file changed, 1 insertion(+), 1 deletion(-)
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), ); }); }