1
0
Fork 0
mirror of https://git.sr.ht/~cadence/cloudtube synced 2026-03-02 10:41:36 +00:00

Preserve session-watched param on auto-proceed

This commit is contained in:
Cadence Ember 2021-04-26 00:22:14 +12:00
parent 2b2f8bf84a
commit e0238d7e7d
No known key found for this signature in database
GPG key ID: BC1C2C61CF521B17
2 changed files with 6 additions and 4 deletions

View file

@ -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)
}
})