From: Seven Du Date: Tue, 9 Apr 2019 13:11:11 +0000 (+0800) Subject: FS-11773 add callID to conference private event X-Git-Tag: v1.10.2^2~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aec1cbd236cfb62240bd1b07bac63844ce57e4ec;p=thirdparty%2Ffreeswitch.git FS-11773 add callID to conference private event --- diff --git a/src/mod/applications/mod_conference/conference_event.c b/src/mod/applications/mod_conference/conference_event.c index 9b7f748ae8..d293630167 100644 --- a/src/mod/applications/mod_conference/conference_event.c +++ b/src/mod/applications/mod_conference/conference_event.c @@ -650,6 +650,7 @@ void conference_event_adv_la(conference_obj_t *conference, conference_member_t * cJSON_AddItemToObject(msg, "eventChannel", cJSON_CreateString(event_channel)); cJSON_AddItemToObject(msg, "eventType", cJSON_CreateString("channelPvtData")); + cJSON_AddStringToObject(msg, "callID", switch_core_session_get_uuid(member->session)); cJSON_AddItemToObject(data, "action", cJSON_CreateString(join ? "conference-liveArray-join" : "conference-liveArray-part")); cJSON_AddItemToObject(data, "laChannel", cJSON_CreateString(conference->la_event_channel));