1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-18 19:19:32 +00:00

[Pornhub] Fix error detection

This commit is contained in:
kidol 2016-06-30 21:06:22 +02:00 committed by Sergey M․
parent c9e538a3b1
commit 044e3d91b5
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View 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)