Jinman Tiantang: Fix SChapter name error (#8841)

Fix: SChapter name error
This commit is contained in:
peakedshout 2025-05-15 23:25:37 +08:00 committed by Draff
parent 4fbe372043
commit 8f429616b4
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'Jinman Tiantang'
extClass = '.Jinmantiantang'
extVersionCode = 48
extVersionCode = 49
isNsfw = true
}

View File

@ -234,7 +234,7 @@ class Jinmantiantang : ParsedHttpSource(), ConfigurableSource {
override fun chapterFromElement(element: Element): SChapter = SChapter.create().apply {
url = element.select("a").attr("href")
name = element.select("a li").first()!!.ownText()
name = element.select("a li h3").first()!!.ownText()
date_upload = dateFormat.tryParse(element.select("a li span.hidden-xs").text().trim())
}