mirror of
https://github.com/recloudstream/cloudstream-extensions-multilingual.git
synced 2024-08-15 03:15:14 +00:00
Null bugs repair
This commit is contained in:
parent
d9b7974dbe
commit
59a23b9ddd
1 changed files with 2 additions and 2 deletions
|
@ -107,8 +107,8 @@ class MundoDonghuaProvider : MainAPI() {
|
|||
counter = counter + 1
|
||||
if (counter < 7){
|
||||
if (it.selectFirst("h5")?.text()?.lowercase()?.contains(title.lowercase()) ?: false) {
|
||||
val name = it.selectFirst("h5")?.text()?.replace("Episodio","-")
|
||||
val link = it.selectFirst("a")?.attr("href")
|
||||
val name = it.selectFirst("h5")?.text()?.replace("Episodio","-") ?: ""
|
||||
val link = it.selectFirst("a")?.attr("href") ?: ""
|
||||
Episode(fixUrl(link), name)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue