fix mangakawaii no pages (#5626)

This commit is contained in:
Riztard Lanthorn 2021-02-03 00:56:29 +07:00 committed by GitHub
parent 050636f172
commit bba235621c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'Mangakawaii'
pkgNameSuffix = 'fr.mangakawaii'
extClass = '.MangaKawaii'
extVersionCode = 14
extVersionCode = 15
libVersion = '1.2'
}

View File

@ -100,7 +100,7 @@ class MangaKawaii : ParsedHttpSource() {
override fun pageListParse(response: Response): List<Page> {
val body = response.asJsoup()
var div = body.select("div.text-center.d-none")
var div = body.select("div.text-center .d-none + div:not(#ppp)")
var elements = div.select("img")
val pages = mutableListOf<Page>()