mirror of
https://github.com/iv-org/invidious.git
synced 2024-06-07 19:40:52 +00:00
Fix typo in handling 'controls' param
This commit is contained in:
parent
c728214af7
commit
b82fb58dc4
@ -851,7 +851,7 @@ def process_video_params(query, preferences)
|
|||||||
|
|
||||||
controls = query["controls"]?.try &.to_i?
|
controls = query["controls"]?.try &.to_i?
|
||||||
controls ||= 1
|
controls ||= 1
|
||||||
controls = controls == 1
|
controls = controls >= 1
|
||||||
|
|
||||||
params = {
|
params = {
|
||||||
autoplay: autoplay,
|
autoplay: autoplay,
|
||||||
|
Loading…
Reference in New Issue
Block a user