Fix TMO
This commit is contained in:
happywillow0 2020-01-22 07:20:43 -05:00 committed by arkon
parent ff8c3525eb
commit 0dcbdf1d2c
2 changed files with 2 additions and 2 deletions
src/es/tumangaonline
build.gradle
src/eu/kanade/tachiyomi/extension/es/tumangaonline

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: TuMangaOnline'
pkgNameSuffix = 'es.tumangaonline'
extClass = '.TuMangaOnline'
extVersionCode = 17
extVersionCode = 18
libVersion = '1.2'
}

@ -292,7 +292,7 @@ class TuMangaOnline : ConfigurableSource, ParsedHttpSource() {
override fun pageListParse(document: Document): List<Page> = mutableListOf<Page>().apply {
if (getPageMethod()=="cascade") {
val style = document.select("style:containsData(height: 0px)").html()
val style = document.select("style:containsData(height)").html()
val hiddenClass = style.substringAfter("._").substringBefore("{")
document.select( " .img-container > .viewer-img:not(._$hiddenClass)").forEach {
add(Page(size, "", it.attr("src")))