aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Blake <oak99sky@yahoo.co.uk>2021-04-28 07:13:36 +0100
committerGitHub <noreply@github.com>2021-04-28 07:13:36 +0100
commit26398b16b2738382cf9364e0832d7f7af0018da0 (patch)
tree78d426c9bd1b409b747028a13ce7766e21980d14
parent425b32e09ab0d27d011208421c09a09724d50ba3 (diff)
parentcc83129f5644a01825bdf851f6225061499e7cac (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.cpp3
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()));