-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Closed
Description
newsfeed discards feed items that use "a10:updated" tag instead of "pubdate" etc.
[...]
const fetchNews = () => {
[...]
parser.on("item", (item) => {
[...]
const pubdate = item.pubdate || item.published || item.updated || item["dc:date"];
last line might be changed to
const pubdate = item.pubdate || item.published || item.updated || item["dc:date"] || item["a10:updated"];
Unfamiliar with PR, therefore included possible solution.
Thanks!
Reactions are currently unavailable