Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Items in feed not added image property #63

Closed
fabionolasco opened this issue Aug 8, 2017 · 3 comments
Closed

Items in feed not added image property #63

fabionolasco opened this issue Aug 8, 2017 · 3 comments

Comments

@fabionolasco
Copy link

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

@fabionolasco
Copy link
Author

Just a note: I saw in your personal feed a field called media:content. Should this Node plugin add the same field?

http://blogue.jpmonette.net/rss/

@zfoster
Copy link
Contributor

zfoster commented Sep 13, 2017

I am experiencing this as well

@serman
Copy link

serman commented Nov 2, 2017

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 } }] }); }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants