From: Michiel van Baak Date: Mon, 17 Mar 2008 17:55:06 +0000 (+0000) Subject: Update the directory of placed calls on skinny phones X-Git-Tag: 1.4.19-rc3~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4f2c87c1d1466794c106542f85212e300011f740;p=thirdparty%2Fasterisk.git Update the directory of placed calls on skinny phones when dialing a channel that does not provide progress (analog ZAP lines) The phone does handle the double update on calls to channels that do provide progress and wont insert duplicate items (closes issue #12239) Reported by: DEA Patches: chan_skinny-call-log.txt uploaded by DEA (license 3) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@109171 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_skinny.c b/channels/chan_skinny.c index 2e160c865a..41e33c8a36 100644 --- a/channels/chan_skinny.c +++ b/channels/chan_skinny.c @@ -2554,6 +2554,7 @@ static int skinny_answer(struct ast_channel *ast) transmit_callinfo(s, ast->cid.cid_name, ast->cid.cid_num, exten, exten, l->instance, sub->callid, 2); transmit_callstate(s, l->instance, SKINNY_CONNECTED, sub->callid); transmit_selectsoftkeys(s, l->instance, sub->callid, KEYDEF_CONNECTED); + transmit_dialednumber(s, exten, l->instance, sub->callid); transmit_displaypromptstatus(s, "Connected", 0, l->instance, sub->callid); return res; }