Closed cfjedimaster closed 4 years ago
It looks like you can specifically add some like so:
const parser = new Parser({
customFields: {
item:['media:content']
}
});
I'd maybe google for the common media:* items and just add them all - seems harmless. Unfortunately I don't think there is a "add everything" option.
Also add media:group
Also add the itunes ones (https://www.feedforall.com/itunes.htm), note, these are at the top level and would go in like so: feed: ['itunes:etc']
Full example from the docs:
let parser = new Parser({
customFields: {
feed: ['otherTitle', 'extendedDescription'],
item: ['coAuthor','subtitle'],
}
});
Describe the bug Consider this RSS feed, https://flipboard.com/@DailyMailUS.rss, the items include:
When the event comes in, it does not include this value.
Expected behavior It should include them.