We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When a feed has an image and an itunes:image, the title and link are removed.
<rss> <channel> <image> <url>https://example.com/image.png</url> <title>Image Test</title> <link>https://example.com</link> </image> <itunes:image href="https://example.com/image.png"/> </channel> </rss>
{ 'feed': { 'image': { 'href': 'https: //example.com/image.png' }, } }
{ 'feed': { 'image': { 'href': 'https: //example.com/image.png', 'title: 'Image Test', 'links': [{'href': 'https://example.com'}] }, } }
The text was updated successfully, but these errors were encountered:
itunes:summary
description
Successfully merging a pull request may close this issue.
When a feed has an image and an itunes:image, the title and link are removed.
Example:
Result:
Expected:
The text was updated successfully, but these errors were encountered: