From bea92ae2893c995bbd939784010043cba0908365 Mon Sep 17 00:00:00 2001 From: Henry Wang Date: Mon, 18 Dec 2023 14:18:22 +0000 Subject: [PATCH] fix: incorrect field name in UMS (#14073) --- lib/views/rss3-ums.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/views/rss3-ums.js b/lib/views/rss3-ums.js index bb31cb0af..55d84a517 100644 --- a/lib/views/rss3-ums.js +++ b/lib/views/rss3-ums.js @@ -35,7 +35,7 @@ const rss3Ums = (data) => { metadata: { authors: typeof item.author === 'string' ? [{ name: item.author }] : item.author, description: item.description, - pubDate: item.pubDate, + pub_date: item.pubDate, tags: typeof item.category === 'string' ? [item.category] : item.category, title: item.title, },