1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2025-06-22 19:36:20 +00:00

Merge 6f08b513bf5e82132f07810f40e3fe81e5698ef5 into c052a16f72af7dd7671d4dd62826de71cd99dfb6

This commit is contained in:
Trigus42 2025-04-14 09:09:31 +00:00 committed by GitHub
commit edb9a0bce9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -430,7 +430,10 @@ Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
if note_m:
raise ExtractorError(note_m)
mobj = re.search(r'Page\.messaging_box_controller\.addItems\(\[(?P<msg>{.+?})\]\)', webpage)
mobj = re.search(
r'Page\s*\.\s*messaging_box_controller\s*\.\s*addItems\s*\(\s*\[\s*(?P<msg>{(?!.*}\s*,\s*{).+?})\s*\]\s*\)',
webpage)
if mobj:
msg = json.loads(mobj.group('msg'))
if msg.get('type') == 'error':