Vortex Scans: fix chapter pages (#3010)
This commit is contained in:
parent
fbffcbb557
commit
8a5578250d
|
@ -1,7 +1,8 @@
|
||||||
ext {
|
ext {
|
||||||
extName = 'Vortex Scans'
|
extName = 'Vortex Scans'
|
||||||
extClass = '.VortexScans'
|
extClass = '.VortexScans'
|
||||||
extVersionCode = 31
|
extVersionCode = 32
|
||||||
|
isNsfw = false
|
||||||
}
|
}
|
||||||
|
|
||||||
apply from: "$rootDir/common.gradle"
|
apply from: "$rootDir/common.gradle"
|
||||||
|
|
|
@ -130,7 +130,7 @@ class VortexScans : HttpSource() {
|
||||||
override fun pageListParse(response: Response): List<Page> {
|
override fun pageListParse(response: Response): List<Page> {
|
||||||
val document = response.asJsoup()
|
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"))
|
Page(idx, imageUrl = img.absUrl("src"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue