Prevent invalid watch sections
This commit is contained in:
parent
0f7195fa40
commit
a49407524f
1 changed files with 6 additions and 1 deletions
|
@ -104,8 +104,13 @@ export class VideoViewerStats {
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
const lastSection = stats.watchSections[stats.watchSections.length - 1]
|
const lastSection = stats.watchSections[stats.watchSections.length - 1]
|
||||||
|
|
||||||
|
if (lastSection.start > currentTime) {
|
||||||
|
logger.warn('Invalid end watch section %d. Last start record was at %d.', currentTime, lastSection.start)
|
||||||
|
} else {
|
||||||
lastSection.end = currentTime
|
lastSection.end = currentTime
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stats.watchTime = this.buildWatchTimeFromSections(stats.watchSections)
|
stats.watchTime = this.buildWatchTimeFromSections(stats.watchSections)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue