[Madara] Fix multiple pages handling

Koitharu 2 years ago
parent 5c55d65eb3
commit ce9404da84
Signed by: Koitharu
GPG Key ID: 676DEE768C17A9D7

@ -678,15 +678,16 @@ internal abstract class MadaraParser(
"No image found, try to log in", "No image found, try to log in",
fullUrl, fullUrl,
) )
return root.select(selectPage).map { div -> return root.select(selectPage).flatMap { div ->
val img = div.selectFirstOrThrow("img") div.selectOrThrow("img").map { img ->
val url = img.src()?.toRelativeUrl(domain) ?: div.parseFailed("Image src not found") val url = img.src()?.toRelativeUrl(domain) ?: div.parseFailed("Image src not found")
MangaPage( MangaPage(
id = generateUid(url), id = generateUid(url),
url = url, url = url,
preview = null, preview = null,
source = source, source = source,
) )
}
} }
} }
} else { } else {

Loading…
Cancel
Save