[Fix] Mangabox - balanced marker at status (#1748)
[Fix] Mangabox - balanced marker at status
This commit is contained in:
parent
adca174a7a
commit
929209c088
|
@ -5,7 +5,7 @@ ext {
|
|||
appName = 'Tachiyomi: MangaBox (Mangakakalot and others)'
|
||||
pkgNameSuffix = 'all.mangabox'
|
||||
extClass = '.MangaBoxFactory'
|
||||
extVersionCode = 3
|
||||
extVersionCode = 4
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
|
|
|
@ -137,7 +137,7 @@ abstract class MangaBox (
|
|||
|
||||
manga.title = infoElement.select("h1, h2").first().text()
|
||||
manga.author = infoElement.select("li:contains(author) a").text()
|
||||
val status = infoElement.select("li:contains(status").text()
|
||||
val status = infoElement.select("li:contains(status)").text()
|
||||
manga.status = parseStatus(status)
|
||||
manga.genre = infoElement.select("div.manga-info-top li:contains(genres)").text().substringAfter(": ")
|
||||
manga.description = document.select(descriptionSelector).first().ownText()
|
||||
|
|
Loading…
Reference in New Issue