fix 4anime description

This commit is contained in:
jmir1
2021-05-10 17:51:15 +02:00
parent 8ca51872cf
commit d52af1aef0

View File

@ -67,7 +67,7 @@ class FourAnime : ParsedAnimeHttpSource() {
val anime = SAnime.create()
anime.title = document.select("p.single-anime-desktop").text()
anime.genre = document.select("div.tag a").joinToString(", ") { it.text() }
anime.description = document.select("div#description-mob div#fullcontent p").text()
anime.description = document.select("div#description-mob p[class!=description-mobile]").text()
return anime
}