about summary refs log tree commit diff
path: root/youtube_dl/YoutubeDL.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-03-31 23:57:35 +0700
committerSergey M․ <dstftw@gmail.com>2017-03-31 23:57:35 +0700
commit1640eb096166c81918125a0a7462eb2edb063167 (patch)
tree796dc8613437deda0d088248d79cdf33def07119 /youtube_dl/YoutubeDL.py
parent3e943cfe09eda6ef9b0fa419fdd22155fbaa047f (diff)
downloadyoutube-dl-1640eb096166c81918125a0a7462eb2edb063167.tar.gz
youtube-dl-1640eb096166c81918125a0a7462eb2edb063167.tar.xz
youtube-dl-1640eb096166c81918125a0a7462eb2edb063167.zip
[YoutubeDL] Return early when extraction of url_transparent fails
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-xyoutube_dl/YoutubeDL.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index 21586f0f4..54bc8b06d 100755
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -837,6 +837,12 @@ class YoutubeDL(object):
                 ie_result['url'], ie_key=ie_result.get('ie_key'),
                 extra_info=extra_info, download=False, process=False)
 
+            # extract_info may return None when ignoreerrors is enabled and
+            # extraction failed with an error, don't crash and return early
+            # in this case
+            if not info:
+                return info
+
             force_properties = dict(
                 (k, v) for k, v in ie_result.items() if v is not None)
             for f in ('_type', 'url', 'ie_key'):