Revert PR#18961 which causes multiple regressions (#19198)
* Revert PR#18961 which causes regression * Update version code
This commit is contained in:
parent
21f3959661
commit
37521788e4
|
@ -5,7 +5,7 @@ ext {
|
||||||
extName = 'Jinman Tiantang'
|
extName = 'Jinman Tiantang'
|
||||||
pkgNameSuffix = 'zh.jinmantiantang'
|
pkgNameSuffix = 'zh.jinmantiantang'
|
||||||
extClass = '.Jinmantiantang'
|
extClass = '.Jinmantiantang'
|
||||||
extVersionCode = 39
|
extVersionCode = 40
|
||||||
isNsfw = true
|
isNsfw = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -162,7 +162,7 @@ class Jinmantiantang : ParsedHttpSource(), ConfigurableSource {
|
||||||
override fun mangaDetailsParse(document: Document): SManga = SManga.create().apply {
|
override fun mangaDetailsParse(document: Document): SManga = SManga.create().apply {
|
||||||
title = document.selectFirst("h1")!!.text()
|
title = document.selectFirst("h1")!!.text()
|
||||||
// keep thumbnail_url same as the one in popularMangaFromElement()
|
// keep thumbnail_url same as the one in popularMangaFromElement()
|
||||||
thumbnail_url = document.selectFirst(".thumb-overlay > noscript > img")!!.attr("src").substringBeforeLast('.') + "_3x4.jpg"
|
thumbnail_url = document.selectFirst(".thumb-overlay > img")!!.attr("src").substringBeforeLast('.') + "_3x4.jpg"
|
||||||
author = selectAuthor(document)
|
author = selectAuthor(document)
|
||||||
genre = selectDetailsStatusAndGenre(document, 0).trim().split(" ").joinToString(", ")
|
genre = selectDetailsStatusAndGenre(document, 0).trim().split(" ").joinToString(", ")
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue