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 Draff
parent 67c6278662
commit fe4fa84e8a
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ class MangaDemon : ParsedHttpSource() {
} }
override fun pageListParse(document: Document): List<Page> { 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")) Page(i, "", element.attr("abs:src"))
} }
} }