From b9b734adc7015a3a868804d51d272f28be8456cb Mon Sep 17 00:00:00 2001 From: prototypa Date: Sat, 24 Dec 2022 08:45:02 -0500 Subject: [PATCH] Fix rss.xml.js field: publishDate to pubDate --- src/pages/rss.xml.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/rss.xml.js b/src/pages/rss.xml.js index 27ae1fd..d56438d 100644 --- a/src/pages/rss.xml.js +++ b/src/pages/rss.xml.js @@ -23,7 +23,7 @@ export const get = async () => { link: getPermalink(post.slug, 'post'), title: post.title, description: post.description, - publishDate: post.publishDate, + pubDate: post.publishDate, })), }); };