mirror of
https://github.com/gabehf/tempus.git
synced 2026-03-18 03:36:28 -07:00
fix: further eliminate the use of HTML decode in titles and subtitles
This commit is contained in:
parent
052e9d9068
commit
3c2ea38f1e
3 changed files with 10 additions and 10 deletions
|
|
@ -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 -> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue