From: Giovanni Maruzzelli Date: Mon, 12 May 2014 14:07:02 +0000 (+0200) Subject: FS-6517 skypopen: mod_skypopen not using configured context with mod_sms chatplan... X-Git-Tag: v1.4.4~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7dbab7b1c66ad8a9c15418eccfed0bf1b7df1ce1;p=thirdparty%2Ffreeswitch.git FS-6517 skypopen: mod_skypopen not using configured context with mod_sms chatplan with PATCH, thanks Russell Treleaven --- diff --git a/src/mod/endpoints/mod_skypopen/mod_skypopen.c b/src/mod/endpoints/mod_skypopen/mod_skypopen.c index 8f843a0000..dd83a7b4fd 100644 --- a/src/mod/endpoints/mod_skypopen/mod_skypopen.c +++ b/src/mod/endpoints/mod_skypopen/mod_skypopen.c @@ -3129,6 +3129,7 @@ int incoming_chatmessage(private_t *tech_pvt, int which) //switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "from_full", "from_full"); switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "to_user", tech_pvt->name); //switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "to_host", "to_host"); + switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "context", tech_pvt->context); /* mod_sms end */ switch_event_add_body(event, "%s", tech_pvt->chatmessages[which].body);