From 565ad2948cd6d6e31f0bfd2dff354a8dd82ff173 Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Fri, 10 Jul 2020 11:50:21 -0400 Subject: [PATCH] bugfix dialogflow no input event --- lib/tasks/dialogflow/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/dialogflow/index.js b/lib/tasks/dialogflow/index.js index ab8b0e79..161a8798 100644 --- a/lib/tasks/dialogflow/index.js +++ b/lib/tasks/dialogflow/index.js @@ -18,7 +18,7 @@ class Dialogflow extends Task { this.welcomeEventParams = this.data.welcomeEventParams; } this.noInputTimeout = this.data.noInputTimeout || 20000; - this.noInputEvent = this.data.noInputTimeout || 'actions_intent_NO_INPUT'; + this.noInputEvent = this.data.noInputEvent || 'actions_intent_NO_INPUT'; this.passDtmfAsInputText = this.passDtmfAsInputText === true; if (this.data.eventHook) this.eventHook = this.data.eventHook; if (this.eventHook && Array.isArray(this.data.events)) {