FS-8282 #resolve [sleep is not interrupted by uuid_transfer]

This commit is contained in:
Anthony Minessale 2015-10-02 09:19:06 -05:00
parent fd603e483f
commit 5680bceb6d
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_sleep(switch_core_session_t *session,
if (!switch_channel_media_ready(channel)) {
for (elapsed=0; switch_channel_up(channel) && elapsed<(ms/20); elapsed++) {
for (elapsed=0; switch_channel_ready(channel) && elapsed<(ms/20); elapsed++) {
if (switch_channel_test_flag(channel, CF_BREAK)) {
switch_channel_clear_flag(channel, CF_BREAK);
switch_goto_status(SWITCH_STATUS_BREAK, end);