diff --git a/client/components/app/MediaPlayerContainer.vue b/client/components/app/MediaPlayerContainer.vue index f13fd840e4..e6fae07bc2 100644 --- a/client/components/app/MediaPlayerContainer.vue +++ b/client/components/app/MediaPlayerContainer.vue @@ -244,9 +244,8 @@ export default { }, checkChapterEnd(time) { const chapterEndTime = this.currentChapter.end - const tolerance = 0.5 + const tolerance = 0.75 if (time >= chapterEndTime - tolerance) { - console.log('Chapter end reached', time, chapterEndTime) this.sleepTimerEnd() } },