FS-8311 [mod_voicemail] Pass session to deliver_vm
Allows the leave-message event to add the verbose data FS-8311 #resolve
This commit is contained in:
parent
7f85faf21e
commit
c50d87a09c
|
@ -3290,7 +3290,7 @@ static switch_status_t voicemail_inject(const char *data, switch_core_session_t
|
|||
switch_event_create(&my_params, SWITCH_EVENT_REQUEST_PARAMS);
|
||||
status =
|
||||
deliver_vm(profile, ux, domain, path, 0, read_flags, my_params, pool, cid_name, cid_num, forwarded_by,
|
||||
SWITCH_TRUE, session ? switch_core_session_get_uuid(session) : NULL, NULL);
|
||||
SWITCH_TRUE, session ? switch_core_session_get_uuid(session) : NULL, session);
|
||||
switch_event_destroy(&my_params);
|
||||
}
|
||||
continue;
|
||||
|
@ -3300,7 +3300,7 @@ static switch_status_t voicemail_inject(const char *data, switch_core_session_t
|
|||
switch_event_create(&my_params, SWITCH_EVENT_REQUEST_PARAMS);
|
||||
status = deliver_vm(profile, ut, domain, path, 0, read_flags,
|
||||
my_params, pool, cid_name, cid_num, forwarded_by, SWITCH_TRUE,
|
||||
session ? switch_core_session_get_uuid(session) : NULL, NULL);
|
||||
session ? switch_core_session_get_uuid(session) : NULL, session);
|
||||
switch_event_destroy(&my_params);
|
||||
}
|
||||
}
|
||||
|
@ -3324,7 +3324,7 @@ static switch_status_t voicemail_inject(const char *data, switch_core_session_t
|
|||
switch_event_create(&my_params, SWITCH_EVENT_REQUEST_PARAMS);
|
||||
status = deliver_vm(profile, ut, domain, path, 0, read_flags,
|
||||
my_params, pool, cid_name, cid_num, forwarded_by, SWITCH_TRUE,
|
||||
session ? switch_core_session_get_uuid(session) : NULL, NULL);
|
||||
session ? switch_core_session_get_uuid(session) : NULL, session);
|
||||
switch_event_destroy(&my_params);
|
||||
}
|
||||
}
|
||||
|
@ -3339,7 +3339,7 @@ static switch_status_t voicemail_inject(const char *data, switch_core_session_t
|
|||
switch_event_create(&my_params, SWITCH_EVENT_REQUEST_PARAMS);
|
||||
status = deliver_vm(profile, ut, domain, path, 0, read_flags,
|
||||
my_params, pool, cid_name, cid_num, forwarded_by, SWITCH_TRUE,
|
||||
session ? switch_core_session_get_uuid(session) : NULL, NULL);
|
||||
session ? switch_core_session_get_uuid(session) : NULL, session);
|
||||
switch_event_destroy(&my_params);
|
||||
} else {
|
||||
status = SWITCH_STATUS_FALSE;
|
||||
|
|
Loading…
Reference in New Issue