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

Changed regex which will grab 1 result for title and replaced old pattern

This commit is contained in:
JChris246 2020-06-30 20:38:17 -04:00
parent 92dde77016
commit c3f3a45b7d

View file

@ -36,7 +36,11 @@ class Porn91IE(InfoExtractor):
raise ExtractorError('91 Porn says: Daily limit 10 videos exceeded', expected=True)
title = self._search_regex(
r'<h4 class="login_register_header"[^>]+>([^<]+)</h4>', webpage, 'title')
[
r'<div id="viewvideo-title">([^<]+)</div>',
r'<title>([^\n]+)',
], webpage, 'title'
)
title = title.strip()
video_link_url = self._search_regex(