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'
|
appName = 'Tachiyomi: Japscan'
|
||||||
pkgNameSuffix = 'fr.japscan'
|
pkgNameSuffix = 'fr.japscan'
|
||||||
extClass = '.Japscan'
|
extClass = '.Japscan'
|
||||||
extVersionCode = 2
|
extVersionCode = 3
|
||||||
extVersionSuffix = 1
|
extVersionSuffix = 3
|
||||||
libVersion = '1.2'
|
libVersion = '1.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -83,7 +83,7 @@ class Japscan : ParsedHttpSource() {
|
||||||
manga.author = rowElement.select("div:eq(0)").first()?.text()
|
manga.author = rowElement.select("div:eq(0)").first()?.text()
|
||||||
manga.artist = 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.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) }
|
manga.status = rowElement.select("div:eq(4)").first()?.text().orEmpty().let { parseStatus(it) }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue