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:
parent
1e7afbc211
commit
836b9ea9f6
1 changed files with 1 additions and 1 deletions
|
|
@ -261,7 +261,7 @@ public:
|
|||
|
||||
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));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue