From d3c386c9003123fdb25ecbe0b532e1452b3992e8 Mon Sep 17 00:00:00 2001 From: bfahrenfort Date: Wed, 13 Nov 2024 12:28:35 +1100 Subject: [PATCH] contentIndex: index feed title fix --- quartz/plugins/emitters/contentIndex.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/quartz/plugins/emitters/contentIndex.ts b/quartz/plugins/emitters/contentIndex.ts index 34876090cb676..368c2c1f0f720 100644 --- a/quartz/plugins/emitters/contentIndex.ts +++ b/quartz/plugins/emitters/contentIndex.ts @@ -251,10 +251,7 @@ export const ContentIndex: QuartzEmitterPlugin> = (opts) => { emitted.push( write({ ctx, - content: finishRSSFeed(cfg, opts, { - dir: "" as FullSlug, - raw: (feedTree.data as Feed).raw, // Root guaranteed to be Feed containing all Feeds below - }), + content: finishRSSFeed(cfg, opts, feedTree.data as Feed), slug: "index" as FullSlug, ext: ".xml", }),