mirror of
https://github.com/recloudstream/cloudstream-extensions-multilingual.git
synced 2024-08-15 03:15:14 +00:00
[Bug] Fix wrong season number for TV series
This commit is contained in:
parent
f456a7cc92
commit
826944492e
1 changed files with 3 additions and 3 deletions
|
@ -96,8 +96,8 @@ class PinoyMoviesHub : MainAPI() {
|
|||
}?.let { divEpSeason ->
|
||||
if (divEpSeason.isNotEmpty()) {
|
||||
if (divEpSeason.size > 1) {
|
||||
epCount = divEpSeason[0]
|
||||
seasCount = divEpSeason[1]
|
||||
epCount = divEpSeason[1]
|
||||
seasCount = divEpSeason[0]
|
||||
} else {
|
||||
epCount = divEpSeason[0]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue