1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-04-19 01:45:32 +00:00
This commit is contained in:
Anthony Minessale 2012-08-30 17:17:15 -05:00 committed by Ken Rice
parent 70ae3e0caf
commit deecf2e4ea

@ -694,8 +694,11 @@ static uint8_t check_channel_status(originate_global_t *oglobals, originate_stat
}
}
if (!oglobals->early_ok && switch_channel_test_flag(originate_status[i].peer_channel, CF_EARLY_OK)) {
oglobals->early_ok = 1;
if (switch_channel_test_flag(originate_status[i].peer_channel, CF_EARLY_OK)) {
if (!oglobals->early_ok) {
oglobals->early_ok = 1;
}
switch_channel_clear_flag(originate_status[i].peer_channel, CF_EARLY_OK);
}
state = switch_channel_get_state(originate_status[i].peer_channel);