(Show More) in description (#1008)

* show more in Description

* Update build.gradle
This commit is contained in:
Ankit SIngh 2019-04-10 18:41:34 +05:30 committed by Carlos
parent bf68665bc4
commit 4db6dc3a89
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: Manhwahand' appName = 'Tachiyomi: Manhwahand'
pkgNameSuffix = 'ko.manhwahand' pkgNameSuffix = 'ko.manhwahand'
extClass = '.Manhwahand' extClass = '.Manhwahand'
extVersionCode = 2 extVersionCode = 3
libVersion = '1.2' libVersion = '1.2'
} }

View File

@ -122,7 +122,7 @@ class Manhwahand : ParsedHttpSource() {
manga.genre =genres.joinToString(", ") manga.genre =genres.joinToString(", ")
manga.status = parseStatus(infoElement.select("div.post-status > div:nth-child(2) div").text()) manga.status = parseStatus(infoElement.select("div.post-status > div:nth-child(2) div").text())
manga.description = document.select("div.description-summary")?.text() manga.description = document.select("div.summary__content > p")?.text()
manga.thumbnail_url = document.select("div.summary_image > a > img").attr("src") manga.thumbnail_url = document.select("div.summary_image > a > img").attr("src")
return manga return manga
@ -248,4 +248,4 @@ class Manhwahand : ParsedHttpSource() {
} }
} }