[ie/Reddit] Fix thumbnail extraction

Authored by: bashonly
This commit is contained in:
bashonly 2023-07-28 17:21:45 -05:00
parent ba06d77a31
commit 9a04113dfb
No known key found for this signature in database
GPG Key ID: 783F096F253D15B0
1 changed files with 1 additions and 0 deletions

View File

@ -240,6 +240,7 @@ class RedditIE(InfoExtractor):
'url': unescapeHTML(thumbnail_url),
'width': int_or_none(src.get('width')),
'height': int_or_none(src.get('height')),
'http_headers': {'Accept': '*/*'},
})
for image in try_get(data, lambda x: x['preview']['images']) or []: