mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-08-14 10:37:36 -07:00
[jsinterp] Workaround operator associativity issue
* temporary fix for player 5a3b6271 [1] 1. https://github.com/yt-dlp/yt-dlp/issues/4635#issuecomment-1235384480
This commit is contained in:
parent
218c423bc0
commit
7009bb9f31
2 changed files with 5 additions and 1 deletions
|
@ -107,8 +107,8 @@ _OPERATORS = (
|
|||
('+', _js_arith_op(operator.add)),
|
||||
('-', _js_arith_op(operator.sub)),
|
||||
('*', _js_arith_op(operator.mul)),
|
||||
('/', _js_div),
|
||||
('%', _js_mod),
|
||||
('/', _js_div),
|
||||
('**', _js_exp),
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue