mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-11 01:05:08 +01:00
comments
This commit is contained in:
parent
f42bad8a6b
commit
0d8ef938ff
@ -151,9 +151,12 @@ export function SearchView() {
|
||||
|
||||
if (entry.percentageDone < 90) {
|
||||
newContinueWatching.push(entry)
|
||||
// begin next episode logic
|
||||
} else {
|
||||
// we can't do next episode for movies!
|
||||
if (!subselection.show) return;
|
||||
|
||||
// if the current season has a next episode, load it
|
||||
if (subselection.meta.episodes[subselection.show.season].includes(`${parseInt(subselection.show.episode) + 1}`)) {
|
||||
subselection.show = {
|
||||
season: subselection.show.season,
|
||||
@ -161,11 +164,14 @@ export function SearchView() {
|
||||
}
|
||||
|
||||
entry.percentageDone = 0;
|
||||
} else if (subselection.meta.episodes[`${parseInt(subselection.show.season) + 1}`]['1']) {
|
||||
// if the current season does not have a next epsiode, and the next season has a first episode, load that
|
||||
} else if (subselection.meta.episodes[`${parseInt(subselection.show.season) + 1}`][0]) {
|
||||
subselection.show = {
|
||||
season: `${parseInt(subselection.show.season) + 1}`,
|
||||
episode: '1'
|
||||
episode: subselection.meta.episodes[`${parseInt(subselection.show.season) + 1}`][0]
|
||||
}
|
||||
|
||||
entry.percentageDone = 0;
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user