Skip to content

Commit ff148b0

Browse files
committed
Fix metadata value string get method
1 parent c428fe5 commit ff148b0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/Processors/Channel/MetaData.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ void MetaDataValue::setValue(const String& data)
217217
void MetaDataValue::getValue(String& data) const
218218
{
219219
jassert(m_type == MetaDataDescriptor::CHAR);
220-
data.createStringFromData(m_data.getData(), m_length);
220+
data = String::createStringFromData(m_data.getData(), m_length);
221221
}
222222

223223
template <typename T>

0 commit comments

Comments
 (0)