Fix current video time saving for anonymous users

pull/5665/head
Chocobozzz 2023-03-01 10:48:21 +01:00
parent 43ae5745c3
commit 626b76dcf5
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 7 additions and 13 deletions

View File

@ -207,26 +207,20 @@ class PeerTubePlugin extends Plugin {
.catch(err => logger.error('Cannot notify user is watching.', err))
lastViewEvent = undefined
// Server won't save history, so save the video position in local storage
if (!this.authorizationHeader()) {
saveVideoWatchHistory(this.videoUUID, currentTime)
}
}, this.videoViewIntervalMs)
}
private notifyUserIsWatching (currentTime: number, viewEvent: VideoViewEvent) {
if (!this.videoViewUrl) return Promise.resolve(undefined)
const body: VideoView = {
currentTime,
viewEvent
// Server won't save history, so save the video position in local storage
if (!this.authorizationHeader()) {
saveVideoWatchHistory(this.videoUUID, currentTime)
}
const headers = new Headers({
'Content-type': 'application/json; charset=UTF-8'
})
if (!this.videoViewUrl) return
const body: VideoView = { currentTime, viewEvent }
const headers = new Headers({ 'Content-type': 'application/json; charset=UTF-8' })
if (this.authorizationHeader()) headers.set('Authorization', this.authorizationHeader())
return fetch(this.videoViewUrl, { method: 'POST', body: JSON.stringify(body), headers })