Other comp error fixed :/

This commit is contained in:
Clyzer 2022-12-12 14:30:09 -03:00
parent 6f47bf2c53
commit 3ea701e94d
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ class MundoDonghuaProvider : MainAPI() {
val link = it.attr("href")
Episode(fixUrl(link), name)
}
}?.filterNotNull()
}?.filterNotNull() ?: emptyList()
val episodes = doc.select("ul.donghua-list a").map {
val name = it.selectFirst(".fs-16")?.text()
val link = it.attr("href")