about summary refs log tree commit diff stats
path: root/src/templates.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/templates.ts')
-rw-r--r--src/templates.ts2
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),
       );
     });
   }