13
0

Fix LADSPA author name (remove padding)

This commit is contained in:
Robin Gareus 2019-05-24 23:58:00 +02:00
parent e61c4b692b
commit ce8740cf5e
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -700,6 +700,7 @@ PluginManager::ladspa_discover (string path)
info->creator = "Unknown";
} else{
info->creator = creator.substr (0, pos);
strip_whitespace_edges (info->creator);
}
char buf[32];