Update MangaAe.kt (#1584)
This commit is contained in:
@ -125,7 +125,7 @@ class MangaAe : ParsedHttpSource() {
|
|||||||
// Pages
|
// Pages
|
||||||
override fun pageListParse(document: Document): List<Page> {
|
override fun pageListParse(document: Document): List<Page> {
|
||||||
val pages = mutableListOf<Page>()
|
val pages = mutableListOf<Page>()
|
||||||
document.select("div#showchaptercontainer img").forEach {
|
document.select("div#showchaptercontainer img")?.forEach {
|
||||||
pages.add(Page(pages.size, "", it.attr("src")))
|
pages.add(Page(pages.size, "", it.attr("src")))
|
||||||
}
|
}
|
||||||
return pages
|
return pages
|
||||||
|
Reference in New Issue
Block a user