mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-21 20:47:03 -05:00
Notify licensed content in mangahere
This commit is contained in:
parent
a4313d388d
commit
bc9417e16b
1 changed files with 5 additions and 0 deletions
|
@ -152,6 +152,11 @@ class Mangahere : ParsedHttpSource() {
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun pageListParse(document: Document): List<Page> {
|
override fun pageListParse(document: Document): List<Page> {
|
||||||
|
val licensedError = document.select(".mangaread_error > .mt10").first()
|
||||||
|
if (licensedError != null) {
|
||||||
|
throw Exception(licensedError.text())
|
||||||
|
}
|
||||||
|
|
||||||
val pages = mutableListOf<Page>()
|
val pages = mutableListOf<Page>()
|
||||||
document.select("select.wid60").first()?.getElementsByTag("option")?.forEach {
|
document.select("select.wid60").first()?.getElementsByTag("option")?.forEach {
|
||||||
pages.add(Page(pages.size, it.attr("value")))
|
pages.add(Page(pages.size, it.attr("value")))
|
||||||
|
|
Loading…
Reference in a new issue