From 494e6ce70e1c1580c1333ae85b76002e4b51000e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Sun, 31 Dec 2023 20:11:56 +0100 Subject: [PATCH] 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. --- src/modules/module-jackdbus-detect.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/module-jackdbus-detect.c b/src/modules/module-jackdbus-detect.c index fa2430946..f8c251c85 100644 --- a/src/modules/module-jackdbus-detect.c +++ b/src/modules/module-jackdbus-detect.c @@ -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); }