From: BJ Weschke Date: Wed, 7 Jan 2009 18:20:31 +0000 (+0000) Subject: Answer the channel if it has not already been answered and we've already found a... X-Git-Tag: 1.6.2.0-beta1~498 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3a4e3df193f2c8774471c82a7ecb9dcaec923ff4;p=thirdparty%2Fasterisk.git Answer the channel if it has not already been answered and we've already found a valid profile for followme. (closes issue #14140) Reported by: dimas Patches: 14140.patch uploaded by dimas git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@167478 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_followme.c b/apps/app_followme.c index 62a3cb2481..0bd6e2e5f6 100644 --- a/apps/app_followme.c +++ b/apps/app_followme.c @@ -1073,6 +1073,11 @@ static int app_exec(struct ast_channel *chan, void *data) } ast_mutex_unlock(&f->lock); + /* Answer the call */ + if (chan->_state != AST_STATE_UP) { + ast_answer(chan); + } + if (ast_test_flag(&targs.followmeflags, FOLLOWMEFLAG_STATUSMSG)) ast_stream_and_wait(chan, targs.statusprompt, "");