From be148a4183965ebca98cb0471ae469c1d2dbf505 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Fri, 5 Sep 2025 11:05:35 -0400 Subject: [PATCH] MT#63317 ignore bundle groups under force-relay Change-Id: I3531d7c2b48f043fae1c3ae1685b80d7e30068ce --- daemon/sdp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/sdp.c b/daemon/sdp.c index 02b3eb6cf..6b2b7a661 100644 --- a/daemon/sdp.c +++ b/daemon/sdp.c @@ -1993,7 +1993,7 @@ bool sdp_streams(const sdp_sessions_q *sessions, sdp_streams_q *streams, sdp_ng_ __auto_type attrs = attr_list_get_by_id(&session->attributes, ATTR_GROUP); for (__auto_type ll = attrs ? attrs->head : NULL; ll; ll = ll->next) { attr = ll->data; - if (attr->group.semantics == GROUP_BUNDLE) + if (attr->group.semantics == GROUP_BUNDLE && flags->ice_option != ICE_FORCE_RELAY) sdp_bundle_group(flags, &attr->group); else t_queue_push_tail(&flags->groups_other, &attr->strs.value);