This commit is contained in:
alex 2024-01-08 11:05:14 +07:00
parent 09b5b76260
commit 3955446a36
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
// use an integer for version numbers
version = 1
version = 2
cloudstream {

View File

@ -50,7 +50,7 @@ class Kinoger : MainAPI() {
val title = this.selectFirst("a")?.text() ?: this.selectFirst("img")?.attr("alt")
?: this.selectFirst("a")?.attr("title") ?: return null
val posterUrl = fixUrlNull(
(this.nextElementSibling()?.selectFirst("div.content_text img") ?: this.selectFirst("div.content_text img") ?: this.selectFirst("img"))?.getImageAttr()
(this.selectFirst("div.content_text img") ?: this.nextElementSibling()?.selectFirst("div.content_text img") ?: this.selectFirst("img"))?.getImageAttr()
)
return newTvSeriesSearchResponse(title, href, TvType.AsianDrama) {