diff options
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), ); }); } |