[Fix] Mangabox - balanced marker at status (#1748)

[Fix] Mangabox - balanced marker at status
This commit is contained in:
happywillow0 2019-11-05 07:08:31 -05:00 committed by arkon
parent adca174a7a
commit 929209c088
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: MangaBox (Mangakakalot and others)'
pkgNameSuffix = 'all.mangabox'
extClass = '.MangaBoxFactory'
extVersionCode = 3
extVersionCode = 4
libVersion = '1.2'
}

View File

@ -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()