[xvideos] Fix extractor (#1799)

Closes #1788 
Authored by: Yakabuff
pull/1814/head
Yakabuff 3 years ago committed by GitHub
parent 359df0fc42
commit 2abf081554
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -83,9 +83,7 @@ class XVideosIE(InfoExtractor):
def _real_extract(self, url):
video_id = self._match_id(url)
webpage = self._download_webpage(
'https://www.xvideos.com/video%s/' % video_id, video_id)
webpage = self._download_webpage(url, video_id)
mobj = re.search(r'<h1 class="inlineError">(.+?)</h1>', webpage)
if mobj:

Loading…
Cancel
Save