fix: drop extension requirement in feed icon url, fix #4416 (#4421)

This commit is contained in:
Dag 2025-01-25 17:43:03 +01:00 committed by GitHub
parent 028acd0af1
commit 58b3cfb158
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -80,14 +80,8 @@ class MrssFormat extends FormatAbstract
$feedUrl = get_current_url();
$linkSelf->setAttribute('href', $feedUrl);
} elseif ($feedKey === 'icon') {
$allowedIconExtensions = [
'.gif',
'.jpg',
'.png',
'.ico',
];
$icon = $feedValue;
if ($icon && in_array(substr($icon, -4), $allowedIconExtensions)) {
if ($icon) {
$feedImage = $document->createElement('image');
$channel->appendChild($feedImage);
$iconUrl = $document->createElement('url');