Mangakawaii: Fix #1455 (#1458)

Signed-off-by: Rama Bondan Prakoso <ramanarubp@gmail.com>
This commit is contained in:
Rama Bondan Prakoso 2019-09-04 07:58:12 +07:00 committed by Eugene
parent 1fea350f6b
commit 8eb67a4ee6
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: Mangakawaii'
pkgNameSuffix = 'fr.mangakawaii'
extClass = '.MangaKawaiiSource'
extVersionCode = 1
extVersionCode = 2
libVersion = '1.2'
}

View File

@ -213,7 +213,7 @@ class MangaKawaiiSource : HttpSource() {
return chapter
}
override fun pageListParse(response: Response) = response.asJsoup().select("#all > .img-responsive")
override fun pageListParse(response: Response) = response.asJsoup().select(".img-responsive:not(#ImgPage)")
.mapIndexed { i, e ->
var url = e.attr("data-src")