all repos — website @ 65eae18e49ef4214c312f2594e8a79a621d4c066

My website

Fix tag URI in tagged feeds
Alan Pearce alan@alanpearce.eu
Mon, 15 Apr 2024 08:56:37 +0200
commit

65eae18e49ef4214c312f2594e8a79a621d4c066

parent

158681f4edd81d558024636dfe2bf0f03366c667

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
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),
       );
     });
   }