BatoTo: Update Manga Summary Selector (#9273)
This commit is contained in:
parent
a6c5e5b826
commit
cb56951fd5
|
@ -6,7 +6,7 @@ ext {
|
||||||
extName = 'Bato.to'
|
extName = 'Bato.to'
|
||||||
pkgNameSuffix = 'all.batoto'
|
pkgNameSuffix = 'all.batoto'
|
||||||
extClass = '.BatoToFactory'
|
extClass = '.BatoToFactory'
|
||||||
extVersionCode = 14
|
extVersionCode = 15
|
||||||
containsNsfw = true
|
containsNsfw = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -186,7 +186,7 @@ open class BatoTo(
|
||||||
manga.artist = infoElement.select("div.attr-item:contains(author) a:last-child").text()
|
manga.artist = infoElement.select("div.attr-item:contains(author) a:last-child").text()
|
||||||
manga.status = parseStatus(status)
|
manga.status = parseStatus(status)
|
||||||
manga.genre = infoElement.select(".attr-item b:contains(genres) + span ").joinToString { it.text() }
|
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")
|
manga.thumbnail_url = document.select("div.attr-cover img")
|
||||||
.attr("abs:src")
|
.attr("abs:src")
|
||||||
return manga
|
return manga
|
||||||
|
|
Loading…
Reference in New Issue