Vortex Scans: fix chapter pages (#3010)

This commit is contained in:
Vetle Ledaal 2024-05-15 01:42:06 +00:00 committed by GitHub
parent 45e3a6874e
commit 6068331fd8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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"))
}
}