mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-14 04:08:21 +00:00
fix bad syntax
This commit is contained in:
parent
6f0897a263
commit
e68e73794e
@ -71,11 +71,10 @@ export default {
|
|||||||
methods: {
|
methods: {
|
||||||
isCurrentChapter(chapters, index, playerPosition) {
|
isCurrentChapter(chapters, index, playerPosition) {
|
||||||
if (index + 1 == chapters.length) {
|
if (index + 1 == chapters.length) {
|
||||||
if (playerPosition >= chapters[index].start) return true;
|
return playerPosition >= chapters[index].start;
|
||||||
else return false;
|
} else {
|
||||||
} else if (playerPosition >= chapters[index].start && playerPosition < chapters[index + 1].start)
|
return playerPosition >= chapters[index].start && playerPosition < chapters[index + 1].start;
|
||||||
return true;
|
}
|
||||||
return false;
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user