Browse Source

legacy-gui: Remove undocumented 'feature' that adds nsm-proxy when adding a single space as client name

tags/v1.4.0
Nils 4 years ago
parent
commit
964314f745
1 changed files with 0 additions and 12 deletions
  1. +0
    -12
      src/legacy-gui.cpp

+ 0
- 12
src/legacy-gui.cpp View File

@@ -707,12 +707,6 @@ public:

char *name = strdup( n );

if ( index( name, ' ' ) )
{
free( name );
name = strdup( "nsm-proxy" );
}

lo_address nsm_addr = lo_address_new_from_url( browser->text( browser->value() ) );

osc->send( nsm_addr, "/nsm/server/add", name );
@@ -730,12 +724,6 @@ public:

char *name = strdup( n );

if ( index( name, ' ' ) )
{
free( name );
name = strdup( "nsm-proxy" );
}

MESSAGE( "Sending add for: %s", name );
/* FIXME: user should get to choose which system to do the add on */
foreach_daemon ( d )


Loading…
Cancel
Save