FS-10865: [mod_conference] conference transfer event reports incorrect info in New-Conference-Name #resolve

This commit is contained in:
Brian West 2018-01-02 18:40:08 -06:00 committed by Muteesa Fred
parent 243f9f33b6
commit fe05bacb84
1 changed files with 1 additions and 1 deletions

View File

@ -3356,7 +3356,7 @@ switch_status_t conference_api_sub_transfer(conference_obj_t *conference, switch
switch_event_create_subclass(&event, SWITCH_EVENT_CUSTOM, CONF_EVENT_MAINT) == SWITCH_STATUS_SUCCESS) {
conference_member_add_event_data(member, event);
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "Old-Conference-Name", conference->name);
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "New-Conference-Name", argv[3]);
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "New-Conference-Name", argv[2]);
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "Action", "transfer");
switch_event_fire(&event);
}