aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_sayunixtime.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/app_sayunixtime.c')
-rwxr-xr-xapps/app_sayunixtime.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/app_sayunixtime.c b/apps/app_sayunixtime.c
index 2c5b07a9b..2419ce53c 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;