[Pornhub] Fix error detection
[youtube-dl] / youtube_dl / extractor / pornhub.py
index 6d57e1d35eb567b26f65dea8cc74c653f955c08f..4bbf1ec3b892a4f5fb887b56ec6c233e2e5c3ff9 100644 (file)
@@ -87,7 +87,7 @@ class PornHubIE(InfoExtractor):
         webpage = self._download_webpage(req, video_id)
 
         error_msg = self._html_search_regex(
-            r'(?s)<div class="userMessageSection[^"]*".*?>(.*?)</div>',
+            r'<div[^>]+class="removed">\s*<div[^>]*>\s*<p>\s*<span>([^<]*)</span>',
             webpage, 'error message', default=None)
         if error_msg:
             error_msg = re.sub(r'\s+', ' ', error_msg)