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

This commit is contained in:
ddmgy 2017-11-05 04:42:02 -05:00 committed by Bram van de Kerkhof
parent d69730a333
commit 2060b5cd34

View File

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