mirror of
https://gitea.invidious.io/iv-org/invidious.git
synced 2024-08-15 00:53:41 +00:00
Fix typo in autoplay
This commit is contained in:
parent
04d9b16a6b
commit
3418b82dc5
1 changed files with 2 additions and 2 deletions
|
@ -177,7 +177,7 @@
|
|||
<% if !rvs.empty? && !plid && params[:continue] %>
|
||||
player.on('ended', function() {
|
||||
window.location.replace("/watch?v="
|
||||
+ "<%= rvs.select { |rv| rv["id"]? }[0]? %>"
|
||||
+ "<%= rvs.select { |rv| rv["id"]? }[0]?.try &.["id"] %>"
|
||||
+ "&continue=1"
|
||||
<% if params[:listen] %>
|
||||
+ "&listen=1"
|
||||
|
@ -196,7 +196,7 @@ function continue_autoplay(target) {
|
|||
if (target.checked) {
|
||||
player.on('ended', function() {
|
||||
window.location.replace("/watch?v="
|
||||
+ "<%= rvs.select { |rv| rv["id"]? }[0]? %>"
|
||||
+ "<%= rvs.select { |rv| rv["id"]? }[0]?.try &.["id"] %>"
|
||||
+ "&continue=1"
|
||||
<% if params[:listen] %>
|
||||
+ "&listen=1"
|
||||
|
|
Loading…
Reference in a new issue