mirror of
https://git.sr.ht/~cadence/cloudtube
synced 2024-11-12 19:37:29 +00:00
Preserve session-watched param on auto-proceed
This commit is contained in:
parent
2b2f8bf84a
commit
e0238d7e7d
@ -6,8 +6,9 @@ console.log
|
||||
|
||||
video.addEventListener("ended", () => {
|
||||
if (data.continuous) {
|
||||
const first = data.recommendedVideos[0]
|
||||
window.location.assign(`/watch?v=${first.videoId}&continuous=1`)
|
||||
const first = q("#continuous-first")
|
||||
const url = first.querySelector(".title-link").href
|
||||
location.assign(url)
|
||||
}
|
||||
})
|
||||
|
||||
|
@ -18,7 +18,7 @@ block content
|
||||
if first
|
||||
script(type="module" src=getStaticURL("html", "/static/js/continuous.js"))
|
||||
noscript
|
||||
meta(http-equiv="refresh" content=`${video.lengthSeconds+5};url=/watch?v=${first.videoId}&continuous=1`)
|
||||
meta(http-equiv="refresh" content=`${video.lengthSeconds+5};url=/watch?v=${first.videoId}&continuous=1&session-watched=${sessionWatchedNext}`)
|
||||
main.video-page
|
||||
.main-video-section
|
||||
.video-container
|
||||
@ -91,7 +91,8 @@ block content
|
||||
if column.length
|
||||
.related-cols
|
||||
h2.related-header Autoplay next
|
||||
+video_list_item("related-video", column.shift(), instanceOrigin, {continuous: true})
|
||||
#continuous-first
|
||||
+video_list_item("related-video", column.shift(), instanceOrigin, {continuous: true})
|
||||
if column.length
|
||||
.related-cols
|
||||
h2.related-header Related videos
|
||||
|
Loading…
Reference in New Issue
Block a user