Haomanwu: Fix manga detail title (#11538)
This commit is contained in:
parent
1e0473d8bd
commit
9d238759a5
|
@ -5,7 +5,7 @@ ext {
|
|||
extName = 'Haomanwu'
|
||||
pkgNameSuffix = 'zh.haomanwu'
|
||||
extClass = '.Haomanwu'
|
||||
extVersionCode = 1
|
||||
extVersionCode = 2
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
|
|
@ -51,7 +51,7 @@ class Haomanwu : ParsedHttpSource() {
|
|||
// Details
|
||||
|
||||
override fun mangaDetailsParse(document: Document): SManga = SManga.create().apply {
|
||||
title = document.select("p.comic-title").text()
|
||||
title = document.select("div.de-info__box > p.comic-title").text()
|
||||
thumbnail_url = document.select("div.de-info__cover > img").attr("src")
|
||||
author = document.select("div.comic-author > span.name > a").text()
|
||||
artist = author
|
||||
|
|
Loading…
Reference in New Issue