mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-12-17 06:56:42 +00:00
[youtube] signatures: Recognize javascript functions that contain “$” (fixes #2304)
This commit is contained in:
parent
56dced2670
commit
20650c8654
@ -502,7 +502,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
|
|||||||
return a % b
|
return a % b
|
||||||
|
|
||||||
m = re.match(
|
m = re.match(
|
||||||
r'^(?P<func>[a-zA-Z]+)\((?P<args>[a-z0-9,]+)\)$', expr)
|
r'^(?P<func>[a-zA-Z$]+)\((?P<args>[a-z0-9,]+)\)$', expr)
|
||||||
if m:
|
if m:
|
||||||
fname = m.group('func')
|
fname = m.group('func')
|
||||||
if fname not in functions:
|
if fname not in functions:
|
||||||
|
Loading…
Reference in New Issue
Block a user