* 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'
|
||||
pkgNameSuffix = 'all.mangapark'
|
||||
extClass = '.MangaParkFactory'
|
||||
extVersionCode = 11
|
||||
extVersionCode = 12
|
||||
containsNsfw = true
|
||||
}
|
||||
|
||||
|
|
|
@ -271,8 +271,8 @@ open class MangaPark(
|
|||
}
|
||||
|
||||
override fun pageListParse(document: Document): List<Page> {
|
||||
if (document.select("div.wrapper-deleted") != null) {
|
||||
throw Exception("The chapter content seems to be deleted. Contact the site owner if possible.")
|
||||
if (document.selectFirst("div.wrapper-deleted") != null) {
|
||||
throw Exception("The chapter content seems to be deleted.\n\nContact the site owner if possible.")
|
||||
}
|
||||
|
||||
val duktape = Duktape.create()
|
||||
|
|
Loading…
Reference in New Issue