Bakai: fix element typo mangaselector (#9827)

This commit is contained in:
whitebeardhelper 2025-07-28 12:05:48 -03:00 committed by Draff
parent 24591d0836
commit c4794638ff
Signed by: Draff
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 = 12
extVersionCode = 13
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*=elCm_sPageWrap] ul > li > article"
override fun popularMangaSelector() = "[id*=elCms_PageWrap] ul > li > article"
override fun popularMangaFromElement(element: Element) = SManga.create().apply {
thumbnail_url = element.selectFirst("img")?.imgAttr()