[imdb] Fix thumbnail (#1581)

Authored by: ozburo
This commit is contained in:
ozburo 2021-11-09 15:26:57 -06:00 committed by GitHub
parent 9b12e9a573
commit 358247ed2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ class ImdbIE(InfoExtractor):
'formats': formats,
'description': info.get('videoDescription'),
'thumbnail': url_or_none(try_get(
video_metadata, lambda x: x['videoSlate']['source'])),
info, lambda x: x['videoSlate']['source'])),
'duration': parse_duration(info.get('videoRuntime')),
}