From 3116be32b404cbeca066d73a14079a11b8072faf Mon Sep 17 00:00:00 2001 From: pukkandan Date: Wed, 15 Dec 2021 22:20:30 +0530 Subject: [PATCH] [brightcove] Fix 487c5b33897075270c647fa061c066ec0703bcc4 --- yt_dlp/extractor/brightcove.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/yt_dlp/extractor/brightcove.py b/yt_dlp/extractor/brightcove.py index 6fd15653c..dcd332b43 100644 --- a/yt_dlp/extractor/brightcove.py +++ b/yt_dlp/extractor/brightcove.py @@ -583,8 +583,7 @@ def build_format_id(kind): 'id': video_id, 'title': title, 'description': clean_html(json_data.get('description')), - 'thumbnail': json_data.get('thumbnail') or json_data.get('poster'), - 'thumbnials': thumbnails, + 'thumbnails': thumbnails, 'duration': duration, 'timestamp': parse_iso8601(json_data.get('published_at')), 'uploader_id': json_data.get('account_id'),