Issue 5518 : <Mangakawaii [FR]>: <No page found on any manga> (#5553)

* Fix empty page list Mangakawaii (#5518)

* Update version mangakawaii

Co-authored-by: Duchesne Lucas <lucas.duchesne@soprabanking.com>
This commit is contained in:
Angelghost 2021-01-25 13:27:27 +01:00 committed by GitHub
parent 0293fbc547
commit a5269a4536
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 = 13
extVersionCode = 14
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#all")
var div = body.select("div.text-center.d-none")
var elements = div.select("img")
val pages = mutableListOf<Page>()