浏览代码

Notify licensed content in mangahere

len 8 年之前
父节点
当前提交
bc9417e16b
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      app/src/main/java/eu/kanade/tachiyomi/source/online/english/Mangahere.kt

+ 5 - 0
app/src/main/java/eu/kanade/tachiyomi/source/online/english/Mangahere.kt

@@ -152,6 +152,11 @@ class Mangahere : ParsedHttpSource() {
     }
 
     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>()
         document.select("select.wid60").first()?.getElementsByTag("option")?.forEach {
             pages.add(Page(pages.size, it.attr("value")))