[blinkx] Minor fix

Fixes: https://github.com/ytdl-org/youtube-dl/issues/28941
This commit is contained in:
pukkandan 2021-05-04 22:26:16 +05:30
parent 4d224a3022
commit 06425e9621
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698
1 changed files with 2 additions and 2 deletions

View File

@ -78,8 +78,8 @@ class BlinkxIE(InfoExtractor):
'fullid': video_id,
'title': data['title'],
'formats': formats,
'uploader': data['channel_name'],
'timestamp': data['pubdate_epoch'],
'uploader': data.get('channel_name'),
'timestamp': data.get('pubdate_epoch'),
'description': data.get('description'),
'thumbnails': thumbnails,
'duration': duration,