mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-22 16:44:32 +01:00
Changed regex which will grab 1 result for title and replaced old pattern
This commit is contained in:
parent
92dde77016
commit
c3f3a45b7d
@ -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(
|
||||
|
Loading…
Reference in New Issue
Block a user