forked from Mirrors/freeswitch
oups that wasnt on a pool
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13006 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
5585731aeb
commit
8e798960a7
@ -291,13 +291,14 @@ static switch_status_t play_and_collect(switch_core_session_t *session, switch_i
|
|||||||
switch_status_t status = SWITCH_STATUS_FALSE;
|
switch_status_t status = SWITCH_STATUS_FALSE;
|
||||||
switch_input_args_t args = { 0 };
|
switch_input_args_t args = { 0 };
|
||||||
switch_channel_t *channel;
|
switch_channel_t *channel;
|
||||||
|
char *sound_expanded = sound;
|
||||||
|
|
||||||
if (!session || !menu || switch_strlen_zero(sound)) {
|
if (!session || !menu || switch_strlen_zero(sound)) {
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((channel = switch_core_session_get_channel(session))) {
|
if ((channel = switch_core_session_get_channel(session))) {
|
||||||
sound = switch_channel_expand_variables(channel, sound);
|
sound_expanded = switch_channel_expand_variables(channel, sound);
|
||||||
}
|
}
|
||||||
|
|
||||||
memset(menu->buf, 0, menu->inlen + 1);
|
memset(menu->buf, 0, menu->inlen + 1);
|
||||||
@ -313,7 +314,11 @@ static switch_status_t play_and_collect(switch_core_session_t *session, switch_i
|
|||||||
args.buf = ptr;
|
args.buf = ptr;
|
||||||
args.buflen = len;
|
args.buflen = len;
|
||||||
|
|
||||||
status = switch_ivr_play_file(session, NULL, sound, &args);
|
status = switch_ivr_play_file(session, NULL, sound_expanded, &args);
|
||||||
|
|
||||||
|
if (sound_expanded != sound) {
|
||||||
|
switch_safe_free(sound_expanded);
|
||||||
|
}
|
||||||
|
|
||||||
if (!need) {
|
if (!need) {
|
||||||
return status;
|
return status;
|
||||||
|
Loading…
Reference in New Issue
Block a user