mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[noco] Skip invalid timestamps (closes #5826)
This commit is contained in:
parent
788be3313d
commit
01e21b89ee
1 changed files with 4 additions and 0 deletions
|
@ -166,6 +166,10 @@ def _real_extract(self, url):
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
|
||||||
timestamp = parse_iso8601(show.get('online_date_start_utc'), ' ')
|
timestamp = parse_iso8601(show.get('online_date_start_utc'), ' ')
|
||||||
|
|
||||||
|
if timestamp is not None and timestamp < 0:
|
||||||
|
timestamp = None
|
||||||
|
|
||||||
uploader = show.get('partner_name')
|
uploader = show.get('partner_name')
|
||||||
uploader_id = show.get('partner_key')
|
uploader_id = show.get('partner_key')
|
||||||
duration = float_or_none(show.get('duration_ms'), 1000)
|
duration = float_or_none(show.get('duration_ms'), 1000)
|
||||||
|
|
Loading…
Reference in a new issue