MangaKawaii: fix pages issue (#6273)

This commit is contained in:
Riztard Lanthorn 2021-03-24 22:24:45 +07:00 committed by GitHub
parent 51bc7410ba
commit 44c4e1e423
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 = 23
extVersionCode = 24
libVersion = '1.2'
}

View File

@ -118,7 +118,7 @@ class MangaKawaii : ParsedHttpSource() {
override fun pageListParse(response: Response): List<Page> {
val body = response.asJsoup()
var elements = body.select("div#all img[loading*=lazy]")
var elements = body.select("div#all img:not([src*=gif])")
val pages = mutableListOf<Page>()
for (i in 0 until elements.count()) {