From f6a5087f63ee6b6c3eefa47e24e954f889b727fe Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Tue, 31 Mar 2026 10:07:36 -0400 Subject: [PATCH] MT#55283 fuller sub update Update all linked subscribers, not just the ones involved in the connect, as they might also need to have their handlers updated. Change-Id: Ib7a8aa3ca0d0f986bb90a99bf1337b358e96be33 --- daemon/call.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/daemon/call.c b/daemon/call.c index b58f122ac..a01696846 100644 --- a/daemon/call.c +++ b/daemon/call.c @@ -4876,10 +4876,10 @@ void dialogue_connect(struct call_monologue *src_ml, struct call_monologue *dst_ media_set_audio_player(dst_media, flags); - codec_handlers_update(src_media, dst_media, - .allow_asymmetric = !!flags->allow_asymmetric_codecs); - codec_handlers_update(dst_media, src_media, - .allow_asymmetric = !!flags->allow_asymmetric_codecs); + codec_update_media_source_handlers(dst_media); + codec_update_media_source_handlers(src_media); + codec_update_media_handlers(src_media); + codec_update_media_handlers(dst_media); update_init_subscribers(src_media, NULL, NULL, flags->opmode); __update_init_medias(&medias, flags->opmode);