From 69b726ec1b480747677eb871e4a56fb0f339a715 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Thu, 20 Dec 2007 03:30:27 +0000 Subject: [PATCH] more stuff git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6912 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_ivr_bridge.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/switch_ivr_bridge.c b/src/switch_ivr_bridge.c index e78ab9b1b7..236b1ee5c7 100644 --- a/src/switch_ivr_bridge.c +++ b/src/switch_ivr_bridge.c @@ -653,7 +653,10 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_multi_threaded_bridge(switch_core_ses switch_channel_clear_flag(caller_channel, CF_ORIGINATOR); //make sure this doesnt break anything - switch_channel_set_state(peer_channel, CS_RESET); + + if (!switch_channel_test_flag(peer_channel, CF_TRANSFER) && switch_channel_get_state(peer_channel) == CS_LOOPBACK) { + switch_channel_set_state(peer_channel, CS_RESET); + } while (switch_channel_get_state(peer_channel) == CS_LOOPBACK) { switch_yield(1000); }