sora: fixed Gomovies

This commit is contained in:
hexated 2023-02-20 16:35:06 +07:00
parent bcaa848a33
commit 453e68da55
1 changed files with 13 additions and 7 deletions

View File

@ -2492,14 +2492,20 @@ object SoraExtractor : SoraStream() {
it.attr("data-year"), it.attr("data-year"),
it.select("a").attr("href") it.select("a").attr("href")
) )
}.find { }.let { el ->
if (season == null) { if(el.size == 1) {
(it.first.equals(title, true) || it.first.equals( el.firstOrNull()
"$title ($year)",
true
)) && it.second.equals("$year")
} else { } else {
it.first.equals("$title - Season $season", true) && it.second.equals("$year") el.find {
if (season == null) {
(it.first.equals(title, true) || it.first.equals(
"$title ($year)",
true
)) && it.second.equals("$year")
} else {
it.first.equals("$title - Season $season", true)
}
}
} }
} ?: return } ?: return