1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-03-13 12:40:17 +00:00

Merge cfbab62cb72030b63fa53ea2639bd67409d24691 into 675bd8f27d7ef201673f21c4ae6dd6fef73383b4

This commit is contained in:
Ahron Greenberg (agree) 2025-03-10 20:41:29 +00:00 committed by GitHub
commit 8d45fdaa6f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1332,7 +1332,7 @@ switch_status_t sofia_glue_do_invite(switch_core_session_t *session)
invite_contact = sofia_overcome_sip_uri_weakness(session, tech_pvt->invite_contact, tech_pvt->transport, SWITCH_FALSE, invite_contact_params, NULL);
}
from_str = sofia_overcome_sip_uri_weakness(session, invite_from_uri ? invite_from_uri : use_from_str, 0, SWITCH_TRUE, invite_from_params, NULL);
to_str = sofia_overcome_sip_uri_weakness(session, invite_to_uri ? invite_to_uri : tech_pvt->dest_to, 0, SWITCH_FALSE, invite_to_params, NULL);
to_str = sofia_overcome_sip_uri_weakness(session, tech_pvt->dest_to ? tech_pvt->dest_to : invite_to_uri, 0, SWITCH_FALSE, invite_to_params, NULL);
switch_channel_set_variable(channel, "sip_outgoing_contact_uri", invite_contact);