You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi jpmonette! I added the image property on the object that are passed to feed.addItem(obj), but the resulting feed does not show the image property on item level.
I think It is a simple bug:
file feed.js:374 it says: if (item.image) { item.push({ enclosure: [{ _attr: { url: entry.image } }] }); }
and it must say: if (entry.image) { item.push({ enclosure: [{ _attr: { url: entry.image } }] }); }
Hi jpmonette! I added the image property on the object that are passed to feed.addItem(obj), but the resulting feed does not show the image property on item level.
Source code generating my feed (line 88):
https://github.com/fabionolasco/fire-feed/blob/master/server.js
Generated feed:
http://fabionolasco.com:3322/rss
The text was updated successfully, but these errors were encountered: