mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-25 19:52:56 +01:00
Vortex Scans: fix chapter pages (#3010)
This commit is contained in:
parent
45e3a6874e
commit
6068331fd8
@ -1,7 +1,8 @@
|
||||
ext {
|
||||
extName = 'Vortex Scans'
|
||||
extClass = '.VortexScans'
|
||||
extVersionCode = 31
|
||||
extVersionCode = 32
|
||||
isNsfw = false
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
@ -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"))
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user