Vortex Scans: fix chapter pages (#3010)

This commit is contained in:
Vetle Ledaal 2024-05-15 01:42:06 +00:00 committed by Draff
parent fbffcbb557
commit 8a5578250d
2 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,8 @@
ext {
extName = 'Vortex Scans'
extClass = '.VortexScans'
extVersionCode = 31
extVersionCode = 32
isNsfw = false
}
apply from: "$rootDir/common.gradle"

View File

@ -130,7 +130,7 @@ class VortexScans : HttpSource() {
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"))
}
}