hanime: fix html tags showing up in anime info
This commit is contained in:
@ -5,7 +5,7 @@ ext {
|
||||
extName = 'hanime.tv'
|
||||
pkgNameSuffix = 'en.hanime'
|
||||
extClass = '.Hanime'
|
||||
extVersionCode = 1
|
||||
extVersionCode = 2
|
||||
libVersion = '10'
|
||||
containsNsfw = true
|
||||
}
|
||||
|
@ -73,7 +73,7 @@ class Hanime : AnimeHttpSource() {
|
||||
anime.thumbnail_url = item.asJsonObject.get("cover_url").asString
|
||||
anime.setUrlWithoutDomain("https://hanime.tv/videos/hentai/" + item.asJsonObject.get("slug").asString)
|
||||
anime.author = item.asJsonObject.get("brand").asString
|
||||
anime.description = item.asJsonObject.get("description").asString
|
||||
anime.description = item.asJsonObject.get("description").asString.replace("<p>", "").replace("</p>", "")
|
||||
anime.status = SAnime.COMPLETED
|
||||
anime.initialized = true
|
||||
animeList.add(anime)
|
||||
|
Reference in New Issue
Block a user