diff options
author | Max Kellermann <max@duempel.org> | 2014-11-11 11:43:52 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-11-11 11:43:52 +0100 |
commit | c3f6502be277ea7a9eb42babc4dc44ab2abf59e2 (patch) | |
tree | 1282ad28125722133058fb21846877454f139bc2 /src/tag/Set.cxx | |
parent | 0120f396acadc56ef907e64a2ec40060e4ee5678 (diff) | |
parent | e5217e6ce97d4a0f972223f5eb6308e9b5e8df8f (diff) | |
download | mpd-c3f6502be277ea7a9eb42babc4dc44ab2abf59e2.tar.gz mpd-c3f6502be277ea7a9eb42babc4dc44ab2abf59e2.tar.xz mpd-c3f6502be277ea7a9eb42babc4dc44ab2abf59e2.zip |
Merge tag 'v0.19.3'
Diffstat (limited to 'src/tag/Set.cxx')
-rw-r--r-- | src/tag/Set.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tag/Set.cxx b/src/tag/Set.cxx index 47a8423bf..6a55a450f 100644 --- a/src/tag/Set.cxx +++ b/src/tag/Set.cxx @@ -19,6 +19,7 @@ #include "Set.hxx" #include "TagBuilder.hxx" +#include "TagSettings.h" #include <assert.h> @@ -109,6 +110,7 @@ TagSet::InsertUnique(const Tag &tag, if (!CheckUnique(type, tag, type, group_mask) && (type != TAG_ALBUM_ARTIST || + ignore_tag_items[TAG_ALBUM_ARTIST] || /* fall back to "Artist" if no "AlbumArtist" was found */ !CheckUnique(type, tag, TAG_ARTIST, group_mask))) InsertUnique(tag, type, nullptr, group_mask); |