diff --git a/mixer/src/Module.C b/mixer/src/Module.C index 0680597..1f30ad0 100644 --- a/mixer/src/Module.C +++ b/mixer/src/Module.C @@ -222,7 +222,7 @@ Module::Port::generate_osc_path () // Hack to keep spaces out of OSC URL... Probably need to handle other special characters similarly. for ( int i = strlen( path ); i--; ) { - if ( path[i] == ' ' ) + if ( path[i] == ' ' || path[i] == ',' ) path[i] = '_'; }