Compex Expression error fixed

This commit is contained in:
Clyzer 2022-12-12 15:46:40 -03:00
parent 7554de506a
commit 8909aec921

View file

@ -103,10 +103,12 @@ class MundoDonghuaProvider : MainAPI() {
else -> null else -> null
} }
var counter = 0 var counter = 0
var condition = ""
val specialEpisodes = app.get(mainUrl, timeout = 120).document.select(".col-xs-4").map { val specialEpisodes = app.get(mainUrl, timeout = 120).document.select(".col-xs-4").map {
counter = counter + 1 counter = counter + 1
if (counter < 7){ if (counter < 7){
if (it.selectFirst("h5")?.text()?.lowercase()?.contains(title.lowercase()) != null && it.selectFirst("h5")?.text()?.lowercase()?.contains(title.lowercase())) { condition = it.selectFirst("h5")?.text()?.lowercase()?.contains(title.lowercase())
if (condition != null && condition == true) {
val name = it.selectFirst("h5")?.text()?.replace("Episodio","-") ?: "" val name = it.selectFirst("h5")?.text()?.replace("Episodio","-") ?: ""
val link = it.selectFirst("a")?.attr("href") ?: "" val link = it.selectFirst("a")?.attr("href") ?: ""
Episode(fixUrl(link), name) Episode(fixUrl(link), name)