fix mangakawaii pages doesnt load (#5646)

This commit is contained in:
Riztard Lanthorn 2021-02-06 21:23:04 +07:00 committed by GitHub
parent a3517579ad
commit 7fee35f1c7
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 = 15
extVersionCode = 16
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 + div:not(#ppp)")
var div = body.select("div.text-center div.d-none:has(img[data-src*=/serv-manga/])")
var elements = div.select("img")
val pages = mutableListOf<Page>()