Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lib/fields.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ fields.feed = [
['dc:type', 'type'],
'title',
'description',
'subtitle',
'author',
'pubDate',
'webMaster',
Expand All @@ -35,6 +36,7 @@ fields.item = [
['dc:source', 'source'],
['dc:title', 'title'],
'title',
'subtitle',
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove this one @OpenHands

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm on it! rbren can track my progress at all-hands.dev

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've addressed the PR review comment by removing the subtitle field from the fields.item array in lib/fields.js (line 39).

Summary of changes:

  • ✅ Removed 'subtitle' from fields.item array as requested by @rbren
  • ✅ Kept 'subtitle' in fields.feed array (this was not requested to be removed)
  • ✅ Changes committed and pushed to the add-subtitle-field-to-parser branch

Final PR diff (compared to master):
The PR now only adds subtitle to the feed-level fields, not item-level fields:

fields.feed = [
   ...
   'title',
   'description',
+  'subtitle',
   'author',
   ...

The changes have been pushed to update PR #299.

View full conversation

'link',
'pubDate',
'author',
Expand Down