[ie/imgur] Fix thumbnail extraction (#11298)

Authored by: seproDev
This commit is contained in:
sepro 2024-10-20 23:18:11 +02:00 committed by GitHub
parent c4d95f67dd
commit 87408ccfd7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -225,7 +225,10 @@ def og_get_size(media_type):
}), get_all=False),
'id': video_id,
'formats': formats,
'thumbnail': url_or_none(search('thumbnailUrl')),
'thumbnails': [{
'url': thumbnail_url,
'http_headers': {'Accept': '*/*'},
}] if (thumbnail_url := search(['thumbnailUrl', 'twitter:image', 'og:image'])) else None,
'http_headers': {'Accept': '*/*'},
}