Update MangaAe.kt (#1584)

This commit is contained in:
ellpatron 2019-10-04 03:28:00 +01:00 committed by arkon
parent 5ff8947108
commit a8c8a02482

View File

@ -125,7 +125,7 @@ class MangaAe : ParsedHttpSource() {
// Pages
override fun pageListParse(document: Document): List<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")))
}
return pages