Webtoon fix some chapter list (#4790)

some title didnt shows chapter list as it should be
This commit is contained in:
Riztard Lanthorn 2020-11-07 21:34:03 +07:00 committed by GitHub
parent a476034aef
commit 1aa80efd15
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 = 'Webtoons'
pkgNameSuffix = 'all.webtoons'
extClass = '.WebtoonsFactory'
extVersionCode = 19
extVersionCode = 20
libVersion = '1.2'
}

View File

@ -17,7 +17,7 @@ open class WebtoonsDefault(
private val dateFormat: SimpleDateFormat = SimpleDateFormat("MMM d, yyyy", Locale.ENGLISH)
) : Webtoons(lang, langCode, lang) {
override fun chapterListSelector() = "ul#_episodeList > li[id*=episode]"
override fun chapterListSelector() = "ul#_episodeList li[id*=episode]"
override fun chapterFromElement(element: Element): SChapter {
val urlElement = element.select("a")