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
This commit is contained in:
parent
7e27f582b2
commit
be7455081a
|
@ -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);
|
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 = switch_caller_profile_clone(session, caller_caller_profile);
|
||||||
|
new_profile->uuid = NULL;
|
||||||
|
new_profile->chan_name = NULL;
|
||||||
new_profile->destination_number = chan_data;
|
new_profile->destination_number = chan_data;
|
||||||
|
|
||||||
if (cid_name_override) {
|
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) {
|
if (caller_profile_override) {
|
||||||
new_profile = switch_caller_profile_dup(pool, caller_profile_override);
|
new_profile = switch_caller_profile_dup(pool, caller_profile_override);
|
||||||
new_profile->destination_number = chan_data;
|
new_profile->destination_number = chan_data;
|
||||||
|
new_profile->uuid = NULL;
|
||||||
|
new_profile->chan_name = NULL;
|
||||||
} else {
|
} else {
|
||||||
if (!cid_name_override) {
|
if (!cid_name_override) {
|
||||||
cid_name_override = "FreeSWITCH";
|
cid_name_override = "FreeSWITCH";
|
||||||
|
|
Loading…
Reference in New Issue