Fix extra (advertisement) page being added in Mangahere. (#122)

This commit is contained in:
ddmgy 2017-11-06 16:22:43 -05:00 committed by inorichi
parent a8ec0567a9
commit c6b1cfc0dc
1 changed files with 3 additions and 1 deletions

View File

@ -183,8 +183,10 @@ class Mangahere : ParsedHttpSource() {
val pages = mutableListOf<Page>() val pages = mutableListOf<Page>()
document.select("select.wid60").first()?.getElementsByTag("option")?.forEach { document.select("select.wid60").first()?.getElementsByTag("option")?.forEach {
if (!it.attr("value").contains("featured.html")) {
pages.add(Page(pages.size, "http:" + it.attr("value"))) pages.add(Page(pages.size, "http:" + it.attr("value")))
} }
}
pages.getOrNull(0)?.imageUrl = imageUrlParse(document) pages.getOrNull(0)?.imageUrl = imageUrlParse(document)
return pages return pages
} }