Merge pull request #5129 from Bnyro/master

fix: parse playlist descriptions as html
This commit is contained in:
Bnyro 2023-11-07 17:39:21 +01:00 committed by GitHub
commit 69d11a3634
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -148,7 +148,7 @@ class PlaylistFragment : Fragment() {
)
}
binding.playlistDescription.text = response.description
binding.playlistDescription.text = response.description?.parseAsHtml()
// hide playlist description text view if not provided
binding.playlistDescription.isGone = response.description.orEmpty().isBlank()