Jinmantiantang: SChapter url select change (#9284)

Fix: SChapter url select change
This commit is contained in:
peakedshout 2025-06-18 22:00:33 +08:00 committed by Draff
parent 325772c8ab
commit 1b46f1f396
Signed by: Draff
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 = 49
extVersionCode = 50
isNsfw = true
}

View File

@ -243,7 +243,7 @@ class Jinmantiantang : ParsedHttpSource(), ConfigurableSource {
if (document.select("div[id=episode-block] a li").size == 0) {
val singleChapter = SChapter.create().apply {
name = "单章节"
url = document.select("a[class=col btn btn-primary dropdown-toggle reading]").attr("href")
url = document.select("#album_photo_cover > div.thumb-overlay > a").attr("href")
date_upload = dateFormat.tryParse(document.select("[itemprop=datePublished]").last()!!.attr("content"))
}
return listOf(singleChapter)