Komiku - remove manga title in chapter name (#6003)
if manga title contains number, it can cause issue to tracking
This commit is contained in:
parent
5ff4a3b2f5
commit
fadcd94f36
@ -5,7 +5,7 @@ ext {
|
||||
extName = 'Komiku'
|
||||
pkgNameSuffix = 'id.komiku'
|
||||
extClass = '.Komiku'
|
||||
extVersionCode = 8
|
||||
extVersionCode = 9
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
|
@ -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")) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user