From 06425e96219e8cf1c6c0417b32f37db91434d528 Mon Sep 17 00:00:00 2001 From: pukkandan Date: Tue, 4 May 2021 22:26:16 +0530 Subject: [PATCH] [blinkx] Minor fix Fixes: https://github.com/ytdl-org/youtube-dl/issues/28941 --- yt_dlp/extractor/blinkx.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yt_dlp/extractor/blinkx.py b/yt_dlp/extractor/blinkx.py index db5e12b21..d70a3b30f 100644 --- a/yt_dlp/extractor/blinkx.py +++ b/yt_dlp/extractor/blinkx.py @@ -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,