aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/app_speech_utils.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/app_speech_utils.c b/apps/app_speech_utils.c
index 0c5c32373..264f56ba1 100644
--- a/apps/app_speech_utils.c
+++ b/apps/app_speech_utils.c
@@ -368,6 +368,7 @@ static int speech_background(struct ast_channel *chan, void *data)
} else {
time(&current);
if ((current-start) >= timeout) {
+ pbx_builtin_setvar_helper(chan, "SILENCE", "1");
done = 1;
break;
}
@@ -398,6 +399,7 @@ static int speech_background(struct ast_channel *chan, void *data)
case AST_SPEECH_STATE_DONE:
/* Assume there will be no results by default */
pbx_builtin_setvar_helper(chan, "RESULTS", "0");
+ pbx_builtin_setvar_helper(chan, "SILENCE", "0");
/* Decoding is done and over... see if we have results */
results = ast_speech_results_get(speech);
if (results != NULL) {