Merge branch 'clangen:master' into master

This commit is contained in:
dinolaz 2023-05-04 16:25:22 +00:00 committed by GitHub
commit 97740e6afd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,11 @@
3.0.1
* fixed a bug where album artist (and potentially other) metadata values were
being double encoded.
* fixed a bug where re-arranging the play queue may cause unnecessary i/o.
--------------------------------------------------------------------------------
3.0.0
* fixed non-latin character parsing in Windows builds

View File

@ -375,7 +375,7 @@ void TaglibMetadataReader::ExtractValueForKey(
if (map.contains(inputKey.c_str())) {
TagLib::StringList value = map[inputKey.c_str()];
if (value.size()) {
this->SetTagValue(outputKey.c_str(), value[0].to8Bit(true), target);
this->SetTagValue(outputKey.c_str(), value[0], target);
}
}
}