Skip to content

Itunes image overrides title and link from image #314

@H4kor

Description

@H4kor

When a feed has an image and an itunes:image, the title and link are removed.

Example:

<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>

Result:

{
    'feed': {
        'image': {
            'href': 'https: //example.com/image.png'
        },
    }
}

Expected:

{
    'feed': {
        'image': {
            'href': 'https: //example.com/image.png',
            'title: 'Image Test',
            'links': [{'href': 'https://example.com'}]
        },
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions