mirror of
https://github.com/hexated/cloudstream-extensions-hexated.git
synced 2024-08-15 00:03:22 +00:00
oops
This commit is contained in:
parent
7a5a2375c7
commit
03ed443ded
1 changed files with 2 additions and 2 deletions
|
@ -859,7 +859,7 @@ object SoraExtractor : SoraStream() {
|
|||
"$fixTitle", true
|
||||
) == true && it.releaseDate?.equals("$year") == true && it.type == "Movie"
|
||||
} else {
|
||||
it.title?.equals("$fixTitle", true) == true && it.type == "TV Series" && it.season == lastSeason
|
||||
it.title?.equals("$fixTitle", true) == true && it.type == "TV Series" && it.seasons == lastSeason
|
||||
}
|
||||
}?.id ?: return
|
||||
|
||||
|
@ -2781,7 +2781,7 @@ data class CrunchyrollDetails(
|
|||
data class ConsumetResults(
|
||||
@JsonProperty("id") val id: String? = null,
|
||||
@JsonProperty("title") val title: String? = null,
|
||||
@JsonProperty("season") val season: Int? = null,
|
||||
@JsonProperty("seasons") val seasons: Int? = null,
|
||||
@JsonProperty("releaseDate") val releaseDate: String? = null,
|
||||
@JsonProperty("type") val type: String? = null,
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue