Prevent invalid watch sections

pull/5138/head
Chocobozzz 2022-07-12 09:51:21 +02:00
parent 0f7195fa40
commit a49407524f
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 6 additions and 1 deletions

View File

@ -104,7 +104,12 @@ export class VideoViewerStats {
})
} else {
const lastSection = stats.watchSections[stats.watchSections.length - 1]
lastSection.end = currentTime
if (lastSection.start > currentTime) {
logger.warn('Invalid end watch section %d. Last start record was at %d.', currentTime, lastSection.start)
} else {
lastSection.end = currentTime
}
}
stats.watchTime = this.buildWatchTimeFromSections(stats.watchSections)