Display all the extra album info #173

Merged
wojtek merged 3 commits from 172---display-all-the-extra-album-info into main 2024-03-17 20:17:41 +01:00
Showing only changes of commit cb3c6284af - Show all commits

View File

@ -339,7 +339,7 @@ impl<'a, 'b> AlbumState<'a, 'b> {
if seq.0 > 0 { if seq.0 > 0 {
format!("{} ({})", Self::display_album_date(date), seq.0) format!("{} ({})", Self::display_album_date(date), seq.0)
} else { } else {
format!("{}", Self::display_album_date(date)) Self::display_album_date(date)
} }
} }
@ -363,7 +363,7 @@ impl<'a, 'b> AlbumState<'a, 'b> {
match primary { match primary {
Some(ref primary) => { Some(ref primary) => {
if secondary.is_empty() { if secondary.is_empty() {
format!("{}", Self::display_primary_type(primary)) Self::display_primary_type(primary).to_string()
} else { } else {
format!( format!(
"{} ({})", "{} ({})",