From 99c98d970b1f168bda470635e1b807560cf3fe63 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Wed, 7 Jul 2010 19:57:32 -0400 Subject: [PATCH] don't hangup on a caller that was transfered out of queue --- src/mod/applications/mod_fifo/mod_fifo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/applications/mod_fifo/mod_fifo.c b/src/mod/applications/mod_fifo/mod_fifo.c index 965cf28002..4c16bb1229 100644 --- a/src/mod/applications/mod_fifo/mod_fifo.c +++ b/src/mod/applications/mod_fifo/mod_fifo.c @@ -1204,7 +1204,7 @@ static void check_ocancel(switch_core_session_t *session) channel = switch_core_session_get_channel(session); - if ((var = switch_channel_get_variable(channel, "fifo_originate_uuid"))) { + if (!switch_channel_test_flag(channel, CF_TRANSFER) && (var = switch_channel_get_variable(channel, "fifo_originate_uuid"))) { switch_core_session_hupall_matching_var("fifo_originate_uuid", var, switch_channel_test_flag(channel, CF_ANSWERED) ? SWITCH_CAUSE_NORMAL_CLEARING : SWITCH_CAUSE_ORIGINATOR_CANCEL);