0
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-11-22 02:15:12 +00:00

[disney] Avoid splitting NoneType

This commit is contained in:
MrDemocracy 2024-11-20 17:47:52 +01:00 committed by GitHub
parent 1525369833
commit 683c166daa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,9 +5,9 @@
determine_ext,
int_or_none,
join_nonempty,
traverse_obj,
unified_strdate,
update_url_query,
traverse_obj,
)
@ -182,7 +182,7 @@ def _real_extract(self, url):
'description': video_data.get('description') or video_data.get('short_desc'),
'thumbnail': video_data.get('thumb') or video_data.get('thumb_secure'),
'duration': int_or_none(video_data.get('duration_sec')),
'upload_date': unified_strdate(video_data.get('publish_date')) or re.sub(r'\D', '', video_data.get('content_date').split('T')[0]),
'upload_date': unified_strdate(video_data.get('publish_date')) or re.sub(r'\D', '', video_data.get('content_date', '').split('T')[0]),
'formats': formats,
'subtitles': subtitles,
}