Komiku - remove manga title in chapter name (#6003)

if manga title contains number, it can cause issue to tracking
This commit is contained in:
Riztard Lanthorn 2021-02-28 22:07:03 +07:00 committed by GitHub
parent 5ff4a3b2f5
commit fadcd94f36
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 = 'Komiku'
pkgNameSuffix = 'id.komiku'
extClass = '.Komiku'
extVersionCode = 8
extVersionCode = 9
libVersion = '1.2'
}

View File

@ -244,7 +244,7 @@ class Komiku : ParsedHttpSource() {
override fun chapterFromElement(element: Element) = SChapter.create().apply {
setUrlWithoutDomain(element.select("a").attr("href"))
name = element.select("a").attr("title")
name = element.select("a").text()
val timeStamp = element.select("td.tanggalseries")
if (timeStamp.text().contains("lalu")) {