pipewire: module-jackdbus-detect: do not autostart jackdbus

There is no need to start jackdbus via dbus service activation,
because this module is only interested in reacting to the jack server
starting/shutting down, it does not actually want to make use of jack
itself.
This commit is contained in:
Barnabás Pőcze 2023-12-31 20:11:56 +01:00 committed by Wim Taymans
parent 542e6c652c
commit 494e6ce70e

View file

@ -237,6 +237,8 @@ static void check_jack_running(struct impl *impl)
if (!m)
return;
dbus_message_set_auto_start(m, false);
impl->pending_call = send_with_reply(impl->bus, m, on_is_started_received, impl);
}