[youtube] Escape possible `$` in `_extract_n_function_name` regex

This commit is contained in:
Lesmiscore 2022-02-20 17:33:58 +09:00
parent febff4c119
commit a7d4acc018
No known key found for this signature in database
GPG Key ID: 0EC2B52CF86236FF
1 changed files with 1 additions and 1 deletions

View File

@ -2418,7 +2418,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
if not idx:
return nfunc
return json.loads(js_to_json(self._search_regex(
rf'var {nfunc}\s*=\s*(\[.+?\]);', jscode,
rf'var {re.escape(nfunc)}\s*=\s*(\[.+?\]);', jscode,
f'Initial JS player n function list ({nfunc}.{idx})')))[int(idx)]
def _extract_n_function(self, video_id, player_url):