BatoTo: Update Manga Summary Selector (#9273)

This commit is contained in:
Narin 2021-09-29 20:02:11 +01:00 committed by GitHub
parent a6c5e5b826
commit cb56951fd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ ext {
extName = 'Bato.to'
pkgNameSuffix = 'all.batoto'
extClass = '.BatoToFactory'
extVersionCode = 14
extVersionCode = 15
containsNsfw = true
}

View File

@ -186,7 +186,7 @@ open class BatoTo(
manga.artist = infoElement.select("div.attr-item:contains(author) a:last-child").text()
manga.status = parseStatus(status)
manga.genre = infoElement.select(".attr-item b:contains(genres) + span ").joinToString { it.text() }
manga.description = infoElement.select("h5:contains(summary) + pre").text()
manga.description = infoElement.select("div.limit-html").text()
manga.thumbnail_url = document.select("div.attr-cover img")
.attr("abs:src")
return manga