aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/noco.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2015-06-08 17:39:55 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2015-06-08 17:39:55 +0800
commit01e21b89eefc32bcc4a92c3a82658cee139b6b2c (patch)
treeb940397bb93ed8d4e9f66bb07e2cca8172f3d5e6 /youtube_dl/extractor/noco.py
parent788be3313df7ad020dc0a98bd5ed43a60120fb3b (diff)
downloadyoutube-dl-01e21b89eefc32bcc4a92c3a82658cee139b6b2c.tar.xz
[noco] Skip invalid timestamps (closes #5826)
Diffstat (limited to 'youtube_dl/extractor/noco.py')
-rw-r--r--youtube_dl/extractor/noco.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/youtube_dl/extractor/noco.py b/youtube_dl/extractor/noco.py
index 664dc81d4..5bbd2dcf6 100644
--- a/youtube_dl/extractor/noco.py
+++ b/youtube_dl/extractor/noco.py
@@ -166,6 +166,10 @@ class NocoIE(InfoExtractor):
self._sort_formats(formats)
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_id = show.get('partner_key')
duration = float_or_none(show.get('duration_ms'), 1000)