mirror of
https://github.com/l1ving/youtube-dl
synced 2026-05-25 01:00:01 +08:00
[eroprofile] Make regex part non-greedy
(Should be squashed into the previous commits)
This commit is contained in:
committed by
GitHub
Unverified
parent
99828a4f66
commit
de94b1aa81
@@ -83,7 +83,7 @@ class EroProfileIE(InfoExtractor):
|
||||
[r'<h1[^>]*>([^<]+)</h1>', r'Title:</th><td>([^<]+)</td>'],
|
||||
webpage, 'title')
|
||||
thumbnail = self._search_regex(
|
||||
[r'<div class="playlistItem current">.*<img src="([^"]+)"', r'onclick="showVideoPlayer\(\)"><img src="([^"]+)'],
|
||||
[r'<div class="playlistItem current">.*?<img src="([^"]+)"', r'onclick="showVideoPlayer\(\)"><img src="([^"]+)'],
|
||||
webpage, 'thumbnail', fatal=False)
|
||||
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user