diff options
author | Dave Blake <oak99sky@yahoo.co.uk> | 2021-04-28 07:13:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-28 07:13:36 +0100 |
commit | 26398b16b2738382cf9364e0832d7f7af0018da0 (patch) | |
tree | 78d426c9bd1b409b747028a13ce7766e21980d14 | |
parent | 425b32e09ab0d27d011208421c09a09724d50ba3 (diff) | |
parent | cc83129f5644a01825bdf851f6225061499e7cac (diff) |
Merge pull request #19650 from the-black-eagle/matrix-fix-reading-mp4-albumartists
[MUSIC] Fix reading of lowercase tag for mp4 albumartists
-rw-r--r-- | xbmc/music/tags/TagLoaderTagLib.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xbmc/music/tags/TagLoaderTagLib.cpp b/xbmc/music/tags/TagLoaderTagLib.cpp index 113863b49d..84b40dea41 100644 --- a/xbmc/music/tags/TagLoaderTagLib.cpp +++ b/xbmc/music/tags/TagLoaderTagLib.cpp @@ -848,7 +848,8 @@ bool CTagLoaderTagLib::ParseTag(MP4::Tag *mp4, EmbeddedArt *art, CMusicInfoTag& SetAlbumArtist(tag, StringListToVectorString(it->second.toStringList())); else if (it->first == "soaa") SetAlbumArtistSort(tag, StringListToVectorString(it->second.toStringList())); - else if (it->first == "----:com.apple.iTunes:ALBUMARTISTS") + else if (it->first == "----:com.apple.iTunes:ALBUMARTISTS" || + it->first == "----:com.apple.iTunes:albumartists") SetAlbumArtistHints(tag, StringListToVectorString(it->second.toStringList())); else if (it->first == "soco") SetComposerSort(tag, StringListToVectorString(it->second.toStringList())); |