diff options
author | Alan Pearce | 2024-04-15 08:56:37 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-15 08:58:42 +0200 |
commit | 65eae18e49ef4214c312f2594e8a79a621d4c066 (patch) | |
tree | f32714419925509367f44bcbbe7749e118ab466e /src | |
parent | 158681f4edd81d558024636dfe2bf0f03366c667 (diff) | |
download | website-65eae18e49ef4214c312f2594e8a79a621d4c066.tar.lz website-65eae18e49ef4214c312f2594e8a79a621d4c066.tar.zst website-65eae18e49ef4214c312f2594e8a79a621d4c066.zip |
Fix tag URI in tagged feeds
Diffstat (limited to 'src')
-rw-r--r-- | src/templates.ts | 2 |
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), ); }); } |