mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
Merge pull request #4338 from t0mm0/x-minus-fix
[xminus] update tkn extraction regex
This commit is contained in:
commit
283ac8d592
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ def _real_extract(self, url):
|
|||
webpage, 'view count', fatal=False))
|
||||
|
||||
enc_token = self._html_search_regex(
|
||||
r'data-mt="(.*?)"', webpage, 'enc_token')
|
||||
r'minus_track\.tkn="(.+?)"', webpage, 'enc_token')
|
||||
token = ''.join(
|
||||
c if pos == 3 else compat_chr(compat_ord(c) - 1)
|
||||
for pos, c in enumerate(reversed(enc_token)))
|
||||
|
|
Loading…
Reference in a new issue