mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-03-16 04:52:22 +09:00
JustinTV: Work even if title is mysteriously missing
This commit is contained in:
parent
bbc3e2753a
commit
13960cc2df
@ -3544,7 +3544,7 @@ class JustinTVIE(InfoExtractor):
|
|||||||
info.append({
|
info.append({
|
||||||
'id': clip['id'],
|
'id': clip['id'],
|
||||||
'url': video_url,
|
'url': video_url,
|
||||||
'title': clip['title'],
|
'title': clip.get('title', ''),
|
||||||
'uploader': clip.get('channel_name', video_uploader_id),
|
'uploader': clip.get('channel_name', video_uploader_id),
|
||||||
'uploader_id': video_uploader_id,
|
'uploader_id': video_uploader_id,
|
||||||
'upload_date': video_date,
|
'upload_date': video_date,
|
||||||
|
Loading…
Reference in New Issue
Block a user