diff --git a/client/components/app/MediaPlayerContainer.vue b/client/components/app/MediaPlayerContainer.vue index 7748f18fc..15b414c28 100644 --- a/client/components/app/MediaPlayerContainer.vue +++ b/client/components/app/MediaPlayerContainer.vue @@ -248,9 +248,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() } },