mirror of
https://github.com/taglib/taglib.git
synced 2026-04-12 17:09:50 -04:00
Map lowercase MusicBrainz TIPL keys to properties (#1274)
This commit is contained in:
@ -315,7 +315,7 @@ PropertyMap TextIdentificationFrame::makeTIPLProperties() const
|
||||
const StringList l = fieldList();
|
||||
for(auto it = l.begin(); it != l.end(); ++it) {
|
||||
auto found = std::find_if(involvedPeople.begin(), involvedPeople.end(),
|
||||
[=](const auto &person) { return *it == person.first; });
|
||||
[=](const auto &person) { return it->upper() == person.first; });
|
||||
if(found != involvedPeople.end()) {
|
||||
map.insert(found->second, (++it)->split(","));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user