From deae6f86507e2a2e7069e8646d860ba14119157a Mon Sep 17 00:00:00 2001 From: openhands Date: Wed, 21 Jan 2026 19:44:35 +0000 Subject: [PATCH 1/2] Add subtitle field to feed and item fields Co-authored-by: openhands --- lib/fields.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/fields.js b/lib/fields.js index b3f8d7b..bb4f63e 100644 --- a/lib/fields.js +++ b/lib/fields.js @@ -8,6 +8,7 @@ fields.feed = [ ['dc:title', 'title'], ['dc:type', 'type'], 'title', + 'subtitle', 'description', 'author', 'pubDate', @@ -35,6 +36,7 @@ fields.item = [ ['dc:source', 'source'], ['dc:title', 'title'], 'title', + 'subtitle', 'link', 'pubDate', 'author', From ec2db73dc6b7ec7257f97047240ca8209f15323a Mon Sep 17 00:00:00 2001 From: openhands Date: Wed, 21 Jan 2026 19:46:09 +0000 Subject: [PATCH 2/2] Add inline comments explaining subtitle field additions Added comments to clarify that the subtitle fields in fields.feed and fields.item support standard RSS/Atom subtitle elements, which are distinct from the itunes:subtitle fields in podcastFeed and podcastItem. --- lib/fields.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/fields.js b/lib/fields.js index bb4f63e..b6ab931 100644 --- a/lib/fields.js +++ b/lib/fields.js @@ -8,7 +8,7 @@ fields.feed = [ ['dc:title', 'title'], ['dc:type', 'type'], 'title', - 'subtitle', + 'subtitle', // Added to support standard RSS/Atom subtitle elements (distinct from itunes:subtitle in podcastFeed) 'description', 'author', 'pubDate', @@ -36,7 +36,7 @@ fields.item = [ ['dc:source', 'source'], ['dc:title', 'title'], 'title', - 'subtitle', + 'subtitle', // Added to support standard RSS/Atom subtitle elements (distinct from itunes:subtitle in podcastItem) 'link', 'pubDate', 'author',