1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-20 06:26:49 +02:00

[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

View File

@ -78,8 +78,8 @@ def _real_extract(self, url):
'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,