Answer if channel isn't up (bug #486)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1771 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer 2003-11-21 05:26:39 +00:00
parent 669e957291
commit d31be07a25
1 changed files with 5 additions and 1 deletions

View File

@ -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;