|
|
@ -430,7 +430,10 @@ Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
|
|
|
|
if note_m:
|
|
|
|
if note_m:
|
|
|
|
raise ExtractorError(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:
|
|
|
|
if mobj:
|
|
|
|
msg = json.loads(mobj.group('msg'))
|
|
|
|
msg = json.loads(mobj.group('msg'))
|
|
|
|
if msg.get('type') == 'error':
|
|
|
|
if msg.get('type') == 'error':
|
|
|
|