mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
Add 'autoplay' and 'loop' query params to watch page
This commit is contained in:
parent
fff0a25c17
commit
56e35def8a
2 changed files with 16 additions and 4 deletions
|
@ -274,6 +274,20 @@ get "/watch" do |env|
|
|||
next env.redirect "/"
|
||||
end
|
||||
|
||||
autoplay = env.params.query["autoplay"]?.try &.to_i
|
||||
video_loop = env.params.query["video_loop"]?.try &.to_i
|
||||
|
||||
if preferences
|
||||
autoplay ||= preferences.autoplay.to_unsafe
|
||||
video_loop ||= preferences.video_loop.to_unsafe
|
||||
end
|
||||
|
||||
autoplay ||= 0
|
||||
video_loop ||= 0
|
||||
|
||||
autoplay = autoplay == 1
|
||||
video_loop = video_loop == 1
|
||||
|
||||
if env.params.query["start"]?
|
||||
video_start = decode_time(env.params.query["start"])
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue