Vortex: fix page list (#4449)

This commit is contained in:
AwkwardPeak7 2024-08-07 08:36:49 +05:00 committed by Draff
parent 45ec1a302d
commit 6f51e9d50f
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 2 deletions

View File

@ -2,4 +2,4 @@ plugins {
id("lib-multisrc")
}
baseVersionCode = 2
baseVersionCode = 3

View File

@ -135,7 +135,7 @@ abstract class Iken(
override fun pageListParse(response: Response): List<Page> {
val document = response.asJsoup()
return document.select("main section > img").mapIndexed { idx, img ->
return document.select("main section img").mapIndexed { idx, img ->
Page(idx, imageUrl = img.absUrl("src"))
}
}