[extractor/BiliIntl] Fix metadata extraction

Closes #4116
This commit is contained in:
pukkandan 2022-06-20 03:03:19 +05:30
parent 40268a7974
commit 8072ef2bbd
No known key found for this signature in database
GPG key ID: 7EEE9E1E817D0A39
4 changed files with 20 additions and 24 deletions

View file

@ -3216,7 +3216,11 @@ def js_to_json(code, vars={}):
return '"%s"' % v
def create_map(mobj):
return json.dumps(dict(json.loads(js_to_json(mobj.group(1) or '[]', vars=vars))))
code = re.sub(r'new Date\((".+")\)', r'\g<1>', code)
code = re.sub(r'new Map\((\[.*?\])?\)', create_map, code)
return re.sub(r'''(?sx)
"(?:[^"\\]*(?:\\\\|\\['"nurtbfx/\n]))*[^"\\]*"|