fix: further eliminate the use of HTML decode in titles and subtitles

This commit is contained in:
CappielloAntonio 2024-08-30 15:27:16 +02:00
parent 052e9d9068
commit 3c2ea38f1e
3 changed files with 10 additions and 10 deletions

View file

@ -182,7 +182,7 @@ public class AlbumPageFragment extends Fragment implements ClickCallback {
if (albumInfo != null) {
if (bind != null) bind.albumNotesTextview.setVisibility(View.VISIBLE);
if (bind != null)
bind.albumNotesTextview.setText(MusicUtil.getReadableString(albumInfo.getNotes()));
bind.albumNotesTextview.setText(MusicUtil.forceReadableString(albumInfo.getNotes()));
if (bind != null && albumInfo.getLastFmUrl() != null && !albumInfo.getLastFmUrl().isEmpty()) {
bind.albumNotesTextview.setOnClickListener(v -> {