1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fix issue parsing non-ASCII chars in flac metadata

This commit is contained in:
Ash Dorey 2025-07-24 17:43:23 +01:00
parent 1e7afbc211
commit 836b9ea9f6

View file

@ -261,7 +261,7 @@ public:
if(FlacNamespace::FLAC__metadata_object_vorbiscomment_entry_to_name_value_pair(comment, &name, &value) && name && value) if(FlacNamespace::FLAC__metadata_object_vorbiscomment_entry_to_name_value_pair(comment, &name, &value) && name && value)
{ {
metadataValues.set (String (name), String (value)); metadataValues.set (CharPointer_UTF8 (name), CharPointer_UTF8 (value));
} }
} }
} }