mirror of https://github.com/yt-dlp/yt-dlp.git
[puls4] Fix error detection (#9194)
This commit is contained in:
parent
260c7036ba
commit
c394b4f4cb
|
@ -40,7 +40,7 @@ class Puls4IE(InfoExtractor):
|
|||
webpage = self._download_webpage(url, video_id)
|
||||
|
||||
error_message = self._html_search_regex(
|
||||
r'<div class="message-error">(.+?)</div>',
|
||||
r'<div[^>]+class="message-error"[^>]*>(.+?)</div>',
|
||||
webpage, 'error message', default=None)
|
||||
if error_message:
|
||||
raise ExtractorError(
|
||||
|
|
Loading…
Reference in New Issue