Mixer: Don't allow ',' in OSC paths.
This commit is contained in:
parent
100b23d1fb
commit
0590687857
|
@ -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] = '_';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue