Skip to content

Commit

Permalink
fix #507
Browse files Browse the repository at this point in the history
  • Loading branch information
alex committed Jan 8, 2024
1 parent 09b5b76 commit 3955446
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Kinoger/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// use an integer for version numbers
version = 1
version = 2


cloudstream {
Expand Down
2 changes: 1 addition & 1 deletion Kinoger/src/main/kotlin/com/hexated/Kinoger.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 3955446

Please sign in to comment.