diff options
author | dirkf <[email protected]> | 2021-11-27 02:06:13 +0000 |
---|---|---|
committer | dirkf <[email protected]> | 2022-01-30 00:05:54 +0000 |
commit | 1ca673bd98cc5bbfa76d00ac84ad5f6c1376db01 (patch) | |
tree | f2c44f44ae1d26e5d9a68f1c8f1cd69130519941 | |
parent | e1eae16b56b5c57e341b000167c0a92e67095e6e (diff) | |
download | youtube-dl-1ca673bd98cc5bbfa76d00ac84ad5f6c1376db01.tar.gz youtube-dl-1ca673bd98cc5bbfa76d00ac84ad5f6c1376db01.zip |
Fix splice to handle float
Needed for new youtube js player f1ca6900
Add https://github.com/yt-dlp/yt-dlp/commit/57dbe8077f8d00e0fffac53669f40cd7d584474f#diff-729b57caa8d006426f6a8960c061f519a8b6658682284015e069745af52ffb07
-rw-r--r-- | youtube_dl/jsinterp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/jsinterp.py b/youtube_dl/jsinterp.py index c35765702..c75cf45b9 100644 --- a/youtube_dl/jsinterp.py +++ b/youtube_dl/jsinterp.py @@ -416,7 +416,7 @@ class JSInterpreter(object): 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:] |