From 6f47bf2c5324b5d96377873aafb991897399be0d Mon Sep 17 00:00:00 2001 From: Clyzer Date: Mon, 12 Dec 2022 14:25:29 -0300 Subject: [PATCH] building errors repair --- .../src/main/kotlin/com/lagradost/MundoDonghuaProvider.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MundoDonghuaProvider/src/main/kotlin/com/lagradost/MundoDonghuaProvider.kt b/MundoDonghuaProvider/src/main/kotlin/com/lagradost/MundoDonghuaProvider.kt index 1ba6382..6f5646b 100644 --- a/MundoDonghuaProvider/src/main/kotlin/com/lagradost/MundoDonghuaProvider.kt +++ b/MundoDonghuaProvider/src/main/kotlin/com/lagradost/MundoDonghuaProvider.kt @@ -109,7 +109,7 @@ class MundoDonghuaProvider : MainAPI() { val link = it.attr("href") Episode(fixUrl(link), name) } - }.filterNotNull() + }?.filterNotNull() val episodes = doc.select("ul.donghua-list a").map { val name = it.selectFirst(".fs-16")?.text() val link = it.attr("href")