We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c428fe5 commit ff148b0Copy full SHA for ff148b0
1 file changed
Source/Processors/Channel/MetaData.cpp
@@ -217,7 +217,7 @@ void MetaDataValue::setValue(const String& data)
217
void MetaDataValue::getValue(String& data) const
218
{
219
jassert(m_type == MetaDataDescriptor::CHAR);
220
- data.createStringFromData(m_data.getData(), m_length);
+ data = String::createStringFromData(m_data.getData(), m_length);
221
}
222
223
template <typename T>
0 commit comments