From d31be07a258edd8ed4ca1d83f33d1143671b6986 Mon Sep 17 00:00:00 2001 From: Mark Spencer <markster@digium.com> Date: Fri, 21 Nov 2003 05:26:39 +0000 Subject: [PATCH] Answer if channel isn't up (bug #486) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1771 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_sayunixtime.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/app_sayunixtime.c b/apps/app_sayunixtime.c index 2c5b07a9b7..2419ce53cf 100755 --- a/apps/app_sayunixtime.c +++ b/apps/app_sayunixtime.c @@ -82,7 +82,11 @@ static int sayunixtime_exec(struct ast_channel *chan, void *data) } } - res = ast_say_date_with_format(chan, unixtime, AST_DIGIT_ANY, chan->language, format, zone); + if (chan->_state != AST_STATE_UP) { + res = ast_answer(chan); + } + if (!res) + res = ast_say_date_with_format(chan, unixtime, AST_DIGIT_ANY, chan->language, format, zone); LOCAL_USER_REMOVE(u); return res; -- GitLab