add an intuitive prefix for the duration of lists on UI, and avoid using the new prefix for single videos

This commit is contained in:
bg1722 2024-04-06 07:58:05 +02:00
parent 46beb105c2
commit 118c426438
3 changed files with 9 additions and 5 deletions

View file

@ -837,7 +837,8 @@ public class LocalPlaylistFragment extends BaseLocalListFragment<List<PlaylistSt
headerBinding.playlistStreamCount.setText(
Localization.concatenateStrings(
Localization.localizeStreamCount(activity, streamCount),
Localization.getDurationString(playlistOverallDurationSeconds))
Localization.getDurationString(playlistOverallDurationSeconds,
true, true))
);
}
}