MangaDemon: get only relevant images (#6200)

* MangaDemon: get only relevant images

* MangaDemon: bump
This commit is contained in:
dngonz 2024-11-21 15:09:09 +01:00 committed by GitHub
parent 33856bfed9
commit 79cdac4194
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -156,7 +156,7 @@ class MangaDemon : ParsedHttpSource() {
}
override fun pageListParse(document: Document): List<Page> {
return document.select("img.imgholder").mapIndexed { i, element ->
return document.select("div > img.imgholder").mapIndexed { i, element ->
Page(i, "", element.attr("abs:src"))
}
}