From: Michael Jerris Date: Fri, 13 Dec 2019 01:12:45 +0000 (-0700) Subject: [mod_sofia] add 'sip_destination_prefix' var to prefix user portion of request uri... X-Git-Tag: v1.10.7^2~207 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9163b7569a9a032d5725b9b421ec85222d285e3f;p=thirdparty%2Ffreeswitch.git [mod_sofia] add 'sip_destination_prefix' var to prefix user portion of request uri with a value (note this will not affect calls to registered endpoints) (#70) --- diff --git a/src/mod/endpoints/mod_sofia/mod_sofia.c b/src/mod/endpoints/mod_sofia/mod_sofia.c index e3bfa3870b..835717e7e9 100644 --- a/src/mod/endpoints/mod_sofia/mod_sofia.c +++ b/src/mod/endpoints/mod_sofia/mod_sofia.c @@ -4909,7 +4909,7 @@ static switch_call_cause_t sofia_outgoing_channel(switch_core_session_t *session } } else { - const char *sip_destination_prefix = switch_str_nil(switch_channel_get_variable(o_channel, "sip_destination_prefix")); + const char *sip_destination_prefix = switch_str_nil(switch_event_get_header(var_event, "sip_destination_prefix")); if (!(dest = strchr(profile_name, '/'))) { switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "Invalid URL\n");