fix not showing description (#7607)

This commit is contained in:
OncePunchedMan 2021-06-11 17:28:02 +02:00 committed by GitHub
parent 8d6a404d77
commit 8b1881a9a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'Pufei'
pkgNameSuffix = 'zh.pufei'
extClass = '.Pufei'
extVersionCode = 6
extVersionCode = 7
libVersion = '1.2'
}

View File

@ -99,7 +99,7 @@ class Pufei : ParsedHttpSource() {
override fun latestUpdatesNextPageSelector() = null
override fun mangaDetailsParse(document: Document): SManga {
val infoElement = document.select("div.book-detail div.cont-list")
val infoElement = document.select("div.book-detail")
val manga = SManga.create()
manga.description = infoElement.select("div#bookIntro > p").text().trim()