Bakai: Fix selector (#7679)

Fix selector
This commit is contained in:
Chopper 2025-02-17 09:25:43 -03:00 committed by Draff
parent 3a3cdded16
commit 69268fc1e3
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'Bakai'
extClass = '.Bakai'
extVersionCode = 7
extVersionCode = 8
isNsfw = true
}

View File

@ -78,7 +78,7 @@ class Bakai : ParsedHttpSource() {
override fun popularMangaRequest(page: Int) = GET("$baseUrl/$popularPathSegment/page/$page/")
override fun popularMangaSelector() = "#elCmsPageWrap ul > li > article"
override fun popularMangaSelector() = "[id*=elCmsPageWrap] ul > li > article"
override fun popularMangaFromElement(element: Element) = SManga.create().apply {
thumbnail_url = element.selectFirst("img")?.imgAttr()