From f82bc288a8d80042198b0c29fb82f283a7fd4d44 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Tue, 4 Nov 2025 17:32:01 -0500 Subject: [PATCH] bass: Fix no setting state delegator IO is closed If delegator IO is closed it means PA Sync is terminated as well. --- profiles/audio/bass.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/profiles/audio/bass.c b/profiles/audio/bass.c index ee01effa3..0ba29f939 100644 --- a/profiles/audio/bass.c +++ b/profiles/audio/bass.c @@ -1817,6 +1817,9 @@ static int handle_mod_src_req(struct bt_bcast_src *bcast_src, g_io_channel_unref(dg->io); dg->io = NULL; + bt_bass_set_pa_sync(dg->src, + BT_BASS_NOT_SYNCHRONIZED_TO_PA); + if (!dg->service) return 0; -- 2.47.3