fix bad syntax

This commit is contained in:
Bnyro 2022-07-23 14:40:16 +02:00
parent 6f0897a263
commit e68e73794e
1 changed files with 4 additions and 5 deletions

View File

@ -71,11 +71,10 @@ export default {
methods: {
isCurrentChapter(chapters, index, playerPosition) {
if (index + 1 == chapters.length) {
if (playerPosition >= chapters[index].start) return true;
else return false;
} else if (playerPosition >= chapters[index].start && playerPosition < chapters[index + 1].start)
return true;
return false;
return playerPosition >= chapters[index].start;
} else {
return playerPosition >= chapters[index].start && playerPosition < chapters[index + 1].start;
}
},
},
};