mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[jsinterp] Fix splice to handle float
Needed for new youtube js player f1ca6900 Closes #1767
This commit is contained in:
parent
e5d731f35d
commit
57dbe8077f
2 changed files with 5 additions and 1 deletions
|
@ -78,6 +78,10 @@
|
|||
'https://www.youtube.com/s/player/2dfe380c/player_ias.vflset/en_US/base.js',
|
||||
'oBo2h5euWy6osrUt', '3DIBbn3qdQ',
|
||||
),
|
||||
(
|
||||
'https://www.youtube.com/s/player/f1ca6900/player_ias.vflset/en_US/base.js',
|
||||
'cu3wyu6LQn2hse', 'jvxetvmlI9AN9Q',
|
||||
),
|
||||
]
|
||||
|
||||
|
||||
|
|
|
@ -397,7 +397,7 @@ def eval_method():
|
|||
elif member == 'splice':
|
||||
assertion(isinstance(obj, list), 'must be applied on a list')
|
||||
assertion(argvals, 'takes one or more arguments')
|
||||
index, howMany = (argvals + [len(obj)])[:2]
|
||||
index, howMany = map(int, (argvals + [len(obj)])[:2])
|
||||
if index < 0:
|
||||
index += len(obj)
|
||||
add_items = argvals[2:]
|
||||
|
|
Loading…
Reference in a new issue