mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 09:12:40 +01:00
[blinkx] Minor fix
Fixes: https://github.com/ytdl-org/youtube-dl/issues/28941
This commit is contained in:
parent
4d224a3022
commit
06425e9621
@ -78,8 +78,8 @@ def _real_extract(self, url):
|
|||||||
'fullid': video_id,
|
'fullid': video_id,
|
||||||
'title': data['title'],
|
'title': data['title'],
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
'uploader': data['channel_name'],
|
'uploader': data.get('channel_name'),
|
||||||
'timestamp': data['pubdate_epoch'],
|
'timestamp': data.get('pubdate_epoch'),
|
||||||
'description': data.get('description'),
|
'description': data.get('description'),
|
||||||
'thumbnails': thumbnails,
|
'thumbnails': thumbnails,
|
||||||
'duration': duration,
|
'duration': duration,
|
||||||
|
Loading…
Reference in New Issue
Block a user