Browse Source

[pornhub] Handle HTTP errors gracefully (closes #26414)

Sergey M․ 4 years ago
parent
commit
e91df0c550
1 changed files with 6 additions and 1 deletions
  1. 6 1
      youtube_dl/extractor/pornhub.py

+ 6 - 1
youtube_dl/extractor/pornhub.py

@@ -31,7 +31,12 @@ class PornHubBaseIE(InfoExtractor):
         def dl(*args, **kwargs):
         def dl(*args, **kwargs):
             return super(PornHubBaseIE, self)._download_webpage_handle(*args, **kwargs)
             return super(PornHubBaseIE, self)._download_webpage_handle(*args, **kwargs)
 
 
-        webpage, urlh = dl(*args, **kwargs)
+        ret = dl(*args, **kwargs)
+
+        if not ret:
+            return ret
+
+        webpage, urlh = ret
 
 
         if any(re.search(p, webpage) for p in (
         if any(re.search(p, webpage) for p in (
                 r'<body\b[^>]+\bonload=["\']go\(\)',
                 r'<body\b[^>]+\bonload=["\']go\(\)',