Fixed mangas descriptions on JapScan (#478)

Fixed mangas descriptions on JapScan
This commit is contained in:
Amine I 2018-09-03 00:23:18 +02:00 committed by Carlos
parent 013e295233
commit 4654ef0f5b
2 changed files with 4 additions and 4 deletions

View File

@ -5,8 +5,8 @@ ext {
appName = 'Tachiyomi: Japscan'
pkgNameSuffix = 'fr.japscan'
extClass = '.Japscan'
extVersionCode = 2
extVersionSuffix = 1
extVersionCode = 3
extVersionSuffix = 3
libVersion = '1.2'
}

View File

@ -83,8 +83,8 @@ class Japscan : ParsedHttpSource() {
manga.author = rowElement.select("div:eq(0)").first()?.text()
manga.artist = rowElement.select("div:eq(0)").first()?.text()
manga.genre = rowElement.select("div:eq(2)").first()?.text()
manga.description = infoElement.select("div.synopsis").first()?.text()
manga.description = infoElement.select("div#synopsis").text()
manga.status = rowElement.select("div:eq(4)").first()?.text().orEmpty().let { parseStatus(it) }
return manga