Skip to content

Commit

Permalink
isomp4: Fix incorrect parsing of SortArtist (#141)
Browse files Browse the repository at this point in the history
The standard tag used was `Artist` when it should be `SortArtist`.
  • Loading branch information
101100 authored Jul 5, 2022
1 parent c6a13bc commit d2c88ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion symphonia-format-isomp4/src/atoms/ilst.rs
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ impl Atom for IlstAtom {
add_generic_tag(&mut iter, &mut mb, Some(StandardTagKey::SortAlbum))?
}
AtomType::SortArtistTag => {
add_generic_tag(&mut iter, &mut mb, Some(StandardTagKey::Artist))?
add_generic_tag(&mut iter, &mut mb, Some(StandardTagKey::SortArtist))?
}
AtomType::SortComposerTag => {
add_generic_tag(&mut iter, &mut mb, Some(StandardTagKey::SortComposer))?
Expand Down

0 comments on commit d2c88ca

Please sign in to comment.