Update WPComicsFactory.kt (#2723)

Update WPComicsFactory.kt
This commit is contained in:
AbdullahM0hamed 2020-04-21 02:17:49 +01:00 committed by GitHub
parent aae5741335
commit 9c90309ad1
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 {
appName = 'Tachiyomi: WP-Comics' appName = 'Tachiyomi: WP-Comics'
pkgNameSuffix = 'all.wpcomics' pkgNameSuffix = 'all.wpcomics'
extClass = '.WPComicsFactory' extClass = '.WPComicsFactory'
extVersionCode = 3 extVersionCode = 4
libVersion = '1.2' libVersion = '1.2'
} }

View File

@ -27,7 +27,7 @@ private class ManhuaES : WPComics("Manhua ES", "https://manhuaes.com", "en", Sim
override fun popularMangaFromElement(element: Element): SManga { override fun popularMangaFromElement(element: Element): SManga {
return SManga.create().apply { return SManga.create().apply {
element.select("div.image a").let { element.select("div.overlay a").let {
title = it.attr("title") title = it.attr("title")
setUrlWithoutDomain(it.attr("href")) setUrlWithoutDomain(it.attr("href"))
} }