提交 be745508 authored 作者: Michael Jerris's avatar Michael Jerris

fix brokeness caused by r5673. Don't pre-set uuid and chan_name on originate…

fix brokeness caused by r5673.  Don't pre-set uuid and chan_name on originate off the source profile.  Fix for FSCORE-49

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5723 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 7e27f582
......@@ -471,6 +471,8 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_originate(switch_core_session_t *sess
caller_caller_profile = caller_profile_override ? caller_profile_override : switch_channel_get_caller_profile(caller_channel);
new_profile = switch_caller_profile_clone(session, caller_caller_profile);
new_profile->uuid = NULL;
new_profile->chan_name = NULL;
new_profile->destination_number = chan_data;
if (cid_name_override) {
......@@ -491,6 +493,8 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_originate(switch_core_session_t *sess
if (caller_profile_override) {
new_profile = switch_caller_profile_dup(pool, caller_profile_override);
new_profile->destination_number = chan_data;
new_profile->uuid = NULL;
new_profile->chan_name = NULL;
} else {
if (!cid_name_override) {
cid_name_override = "FreeSWITCH";
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论