* Bump * Change stuff so that it actually returns null.
This commit is contained in:
parent
4f021f6701
commit
b40ee5e463
|
@ -6,7 +6,7 @@ ext {
|
||||||
extName = 'MangaPark v3'
|
extName = 'MangaPark v3'
|
||||||
pkgNameSuffix = 'all.mangapark'
|
pkgNameSuffix = 'all.mangapark'
|
||||||
extClass = '.MangaParkFactory'
|
extClass = '.MangaParkFactory'
|
||||||
extVersionCode = 11
|
extVersionCode = 12
|
||||||
containsNsfw = true
|
containsNsfw = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -271,8 +271,8 @@ open class MangaPark(
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun pageListParse(document: Document): List<Page> {
|
override fun pageListParse(document: Document): List<Page> {
|
||||||
if (document.select("div.wrapper-deleted") != null) {
|
if (document.selectFirst("div.wrapper-deleted") != null) {
|
||||||
throw Exception("The chapter content seems to be deleted. Contact the site owner if possible.")
|
throw Exception("The chapter content seems to be deleted.\n\nContact the site owner if possible.")
|
||||||
}
|
}
|
||||||
|
|
||||||
val duktape = Duktape.create()
|
val duktape = Duktape.create()
|
||||||
|
|
Loading…
Reference in New Issue