Extra genre chip text trimming

This commit is contained in:
arkon 2020-04-17 19:51:57 -04:00
parent 8de004d281
commit 088160ed32

View File

@ -245,14 +245,16 @@ class MangaInfoController : NucleusController<MangaInfoPresenter>(),
if (!manga.genre.isNullOrBlank()) { if (!manga.genre.isNullOrBlank()) {
binding.mangaGenresTags.removeAllViews() binding.mangaGenresTags.removeAllViews()
manga.genre?.split(", ")?.forEach { genre -> manga.genre?.split(", ").orEmpty()
val chip = Chip(view.context).apply { .map { it.trim() }
text = genre .forEach { genre ->
setOnClickListener { performSearch(genre) } val chip = Chip(view.context).apply {
} text = genre
setOnClickListener { performSearch(genre) }
}
binding.mangaGenresTags.addView(chip) binding.mangaGenresTags.addView(chip)
} }
} }
// Update description TextView. // Update description TextView.