From: Tilghman Lesher Date: Mon, 4 Jan 2010 16:18:59 +0000 (+0000) Subject: It's also possible for the Local channel to directly execute an Application. X-Git-Tag: 1.4.29-rc1~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30dda27b8ada936d05aa8cd7ccab0d0c94ba8cdc;p=thirdparty%2Fasterisk.git It's also possible for the Local channel to directly execute an Application. Reviewboard: https://reviewboard.asterisk.org/r/452/ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@237318 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_local.c b/channels/chan_local.c index cb317b9b2f..e0fba1bb2e 100644 --- a/channels/chan_local.c +++ b/channels/chan_local.c @@ -212,7 +212,7 @@ static int local_queue_frame(struct local_pvt *p, int isoutbound, struct ast_fra } if (other) { - if (other->pbx || other->_bridge) { + if (other->pbx || other->_bridge || !ast_strlen_zero(other->appl)) { ast_queue_frame(other, f); } /* else the frame won't go anywhere */ ast_channel_unlock(other);