KoinoboriScan: Fix pages not found (#5799)

update selector
This commit is contained in:
bapeey 2024-10-31 02:29:21 -05:00 committed by Draff
parent cf602b2fcb
commit 874ca2af62
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 = 'Koinobori Scan'
extClass = '.KoinoboriScan'
extVersionCode = 38
extVersionCode = 39
isNsfw = true
}

View File

@ -162,7 +162,7 @@ class KoinoboriScan : HttpSource() {
override fun pageListParse(response: Response): List<Page> {
val document = response.asJsoup()
return document.select("body > div.w-full > div > img").mapIndexed { i, img ->
return document.select("div.relative > img[src]").mapIndexed { i, img ->
Page(i, imageUrl = img.attr("abs:src"))
}
}