Bakai: Fix popular selector (#8740)

Fix popular selector
This commit is contained in:
Chopper 2025-05-07 12:26:15 -03:00 committed by Draff
parent 2b26d7b3a6
commit 8955f2b7e4
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 = 10
extVersionCode = 11
isNsfw = true
}

View File

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