FS-9323 [mod_dptools] raise bind_digit_action event on correct leg
Ensure digit_action_callback raises the match event on leg specified in bind_digit_action. Specifying the event leg as "peer" or "self" now executes on the correct call leg. FS-9323 #resolve
This commit is contained in:
parent
732b6e75fe
commit
8d8543d0c8
|
@ -166,7 +166,7 @@ static switch_status_t digit_action_callback(switch_ivr_dmachine_match_t *match)
|
||||||
int x = 0;
|
int x = 0;
|
||||||
char *flags = "";
|
char *flags = "";
|
||||||
|
|
||||||
if (switch_ivr_dmachine_get_target(match->dmachine) == DIGIT_TARGET_PEER || act->target == DIGIT_TARGET_PEER || act->target == DIGIT_TARGET_BOTH) {
|
if (act->target == DIGIT_TARGET_PEER || act->target == DIGIT_TARGET_BOTH) {
|
||||||
if (switch_core_session_get_partner(act->session, &use_session) != SWITCH_STATUS_SUCCESS) {
|
if (switch_core_session_get_partner(act->session, &use_session) != SWITCH_STATUS_SUCCESS) {
|
||||||
use_session = act->session;
|
use_session = act->session;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue