This commit is contained in:
Anthony Minessale 2011-03-30 21:03:25 -05:00
parent 4e3d1f3f86
commit b986e13a58
1 changed files with 3 additions and 1 deletions

View File

@ -2607,7 +2607,7 @@ static void conference_loop_output(conference_member_t *member)
}
do {
switch_ivr_gentones(member->session, "%(1000,0,640)", 1, NULL);
switch_ivr_sleep(member->session, 500, SWITCH_TRUE, NULL);
} while(switch_channel_up(channel) && member->conference->originating);
if (!switch_channel_ready(channel)) {
@ -2615,6 +2615,8 @@ static void conference_loop_output(conference_member_t *member)
goto end;
}
conference_member_play_file(member, "tone_stream://%(500,0,640)", 0);
}
}