Make sure that the channel is answered before doing SpeechBackground. (issue #josh-wait-I-dont-have-issue-numbers)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@27194 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Joshua Colp
2006-05-15 15:30:21 +00:00
parent 51d5b1fdb2
commit 80a705c121

View File

@@ -512,6 +512,12 @@ static int speech_background(struct ast_channel *chan, void *data)
return -1; return -1;
} }
/* If channel is not already answered, then answer it */
if (chan->_state != AST_STATE_UP && ast_answer(chan)) {
LOCAL_USER_REMOVE(u);
return -1;
}
/* Record old read format */ /* Record old read format */
oldreadformat = chan->readformat; oldreadformat = chan->readformat;