From 22536600b81d606d89162f853ca62c753b22692f Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 25 May 2026 18:19:12 +0200 Subject: [PATCH] pulse-server: use the new in-follow passive mode A passive port is not automatically activated anymore by an active peer node, it now needs the "follow" mode to follow the state of the peer without activating it. --- src/modules/module-protocol-pulse/pulse-server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/module-protocol-pulse/pulse-server.c b/src/modules/module-protocol-pulse/pulse-server.c index 8d3afc4db..9c53cfc3c 100644 --- a/src/modules/module-protocol-pulse/pulse-server.c +++ b/src/modules/module-protocol-pulse/pulse-server.c @@ -2135,7 +2135,7 @@ static int do_create_record_stream(struct client *client, uint32_t command, uint pw_properties_set(props, PW_KEY_STREAM_CAPTURE_SINK, "true"); if (dont_inhibit_auto_suspend) - pw_properties_set(props, PW_KEY_NODE_PASSIVE, "true"); + pw_properties_set(props, PW_KEY_NODE_PASSIVE, "in-follow"); stream->stream = pw_stream_new(client->core, name, spa_steal_ptr(props)); if (stream->stream == NULL)