mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
fixed one episode bug from prev prerelease
This commit is contained in:
parent
e84c8aa335
commit
d8fb6ea86d
1 changed files with 3 additions and 2 deletions
|
@ -437,7 +437,8 @@ class ResultViewModel : ViewModel() {
|
||||||
for ((index, i) in d.episodes.sortedBy {
|
for ((index, i) in d.episodes.sortedBy {
|
||||||
(it.season?.times(10000) ?: 0) + (it.episode ?: 0)
|
(it.season?.times(10000) ?: 0) + (it.episode ?: 0)
|
||||||
}.withIndex()) {
|
}.withIndex()) {
|
||||||
val id = mainId + (i.season?.times(100000) ?: 0) + (i.episode ?: 0) + 1
|
val episode = i.episode ?: (index + 1)
|
||||||
|
val id = mainId + (i.season?.times(100000) ?: 0) + episode + 1
|
||||||
if (!existingEpisodes.contains(id)) {
|
if (!existingEpisodes.contains(id)) {
|
||||||
existingEpisodes.add(id)
|
existingEpisodes.add(id)
|
||||||
episodes.add(
|
episodes.add(
|
||||||
|
@ -445,7 +446,7 @@ class ResultViewModel : ViewModel() {
|
||||||
d.name,
|
d.name,
|
||||||
filterName(i.name),
|
filterName(i.name),
|
||||||
i.posterUrl,
|
i.posterUrl,
|
||||||
i.episode ?: (index + 1),
|
episode,
|
||||||
i.season,
|
i.season,
|
||||||
i.data,
|
i.data,
|
||||||
apiName,
|
apiName,
|
||||||
|
|
Loading…
Reference in a new issue