daemon: ignore duplicate jack-started signal

this is actually a bug in jackdbus because it should not emit
the "started" signal when the server start is attempted and
server is already started
This commit is contained in:
Nedko Arnaudov 2010-05-10 01:43:25 +03:00
parent cd98f23804
commit eec435a79d
1 changed files with 6 additions and 0 deletions

View File

@ -330,6 +330,12 @@ void ladish_studio_run(void)
{
ladish_environment_ignore(&g_studio.env_store, ladish_environment_jack_server_present);
if (g_studio.jack_graph_proxy != NULL)
{
log_error("Ignoring \"JACK started\" notification because it is already known that JACK is currently started.");
return;
}
/* Automatic studio creation on JACK server start */
if (g_studio.dbus_object == NULL)
{