all repos — website @ 65eae18e49ef4214c312f2594e8a79a621d4c066

My website

Fix tag URI in tagged feeds

Alan Pearce
commit

65eae18e49ef4214c312f2594e8a79a621d4c066

parent

158681f4edd81d558024636dfe2bf0f03366c667

1 file changed, 1 insertion(+), 1 deletion(-)

changed files
M src/templates.tssrc/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), ); }); }