From 2c32cacda24e96024e74213e3a0bdc560b806d95 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Blin?=
 <sebastien.blin@savoirfairelinux.com>
Date: Wed, 28 Jun 2023 12:10:58 -0400
Subject: [PATCH] swarm-call: fix audio binding

Else the conference audio is not binded, and participants can only
listen to the host

Change-Id: I42075c2c5d5cb572efc8e679337f324cb39843b5
---
 src/jamidht/jamiaccount.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/jamidht/jamiaccount.cpp b/src/jamidht/jamiaccount.cpp
index 23a1220e24..b62cc26536 100644
--- a/src/jamidht/jamiaccount.cpp
+++ b/src/jamidht/jamiaccount.cpp
@@ -550,6 +550,7 @@ JamiAccount::handleIncomingConversationCall(const std::string& callId,
         }
 
         conf->addParticipant(callId);
+        conf->bindParticipant(callId);
         emitSignal<libjami::CallSignal::ConferenceChanged>(getAccountID(),
                                                            conf->getConfId(),
                                                            conf->getStateStr());
-- 
GitLab