Browse Source

Fix lv2 export

Wasnt this fixed already?
pull/295/head
falkTX 4 years ago
parent
commit
e28b6770f6
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      distrho/src/DistrhoPluginLV2export.cpp

+ 2
- 2
distrho/src/DistrhoPluginLV2export.cpp View File

@@ -863,8 +863,8 @@ void lv2_generate_ttl(const char* const basename)

if (comment.isNotEmpty())
{
if (comment.contains('"'))
pluginString += " rdfs:comment \"" + comment + "\" ;\n\n";
if (comment.contains('"') || comment.contains('\n'))
pluginString += " rdfs:comment \"\"\"" + comment + "\"\"\" ;\n\n";
else
pluginString += " rdfs:comment \"" + comment + "\" ;\n\n";
}


Loading…
Cancel
Save