ManhwasNet: Fix images not being found error reported in Discord (#11710)

* ManhwasNet: Fix images not found

* bleh
This commit is contained in:
eientei95 2022-05-04 04:18:33 +12:00 committed by GitHub
parent 9340d2df64
commit 6feef81ed7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'Manhwas.net'
pkgNameSuffix = 'es.manhwasnet'
extClass = '.ManhwasNet'
extVersionCode = 1
extVersionCode = 2
isNsfw = true
}

View File

@ -66,7 +66,7 @@ class ManhwasNet : HttpSource() {
override fun pageListParse(response: Response): List<Page> {
val document = response.asJsoup()
return document.select("#imgs img").mapIndexed { i, img ->
return document.select("#chapter_imgs img").mapIndexed { i, img ->
val url = img.attr("src")
Page(i, imageUrl = url)
}