Fixed mangas descriptions on JapScan (#478)
Fixed mangas descriptions on JapScan
This commit is contained in:
parent
013e295233
commit
4654ef0f5b
|
@ -5,8 +5,8 @@ ext {
|
|||
appName = 'Tachiyomi: Japscan'
|
||||
pkgNameSuffix = 'fr.japscan'
|
||||
extClass = '.Japscan'
|
||||
extVersionCode = 2
|
||||
extVersionSuffix = 1
|
||||
extVersionCode = 3
|
||||
extVersionSuffix = 3
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue