mirror of
https://gitlab.com/ytdl-org/youtube-dl.git
synced 2025-11-02 10:48:24 -05:00
[utils] Allow JSONP with empty func name (closes #17028)
This commit is contained in:
@@ -2282,7 +2282,7 @@ def parse_age_limit(s):
|
||||
def strip_jsonp(code):
|
||||
return re.sub(
|
||||
r'''(?sx)^
|
||||
(?:window\.)?(?P<func_name>[a-zA-Z0-9_.$]+)
|
||||
(?:window\.)?(?P<func_name>[a-zA-Z0-9_.$]*)
|
||||
(?:\s*&&\s*(?P=func_name))?
|
||||
\s*\(\s*(?P<callback_data>.*)\);?
|
||||
\s*?(?://[^\n]*)*$''',
|
||||
|
||||
Reference in New Issue
Block a user