bugfix dialogflow no input event

This commit is contained in:
Dave Horton
2020-07-10 11:50:21 -04:00
parent 31bed8afbd
commit 565ad2948c

View File

@@ -18,7 +18,7 @@ class Dialogflow extends Task {
this.welcomeEventParams = this.data.welcomeEventParams; this.welcomeEventParams = this.data.welcomeEventParams;
} }
this.noInputTimeout = this.data.noInputTimeout || 20000; 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; this.passDtmfAsInputText = this.passDtmfAsInputText === true;
if (this.data.eventHook) this.eventHook = this.data.eventHook; if (this.data.eventHook) this.eventHook = this.data.eventHook;
if (this.eventHook && Array.isArray(this.data.events)) { if (this.eventHook && Array.isArray(this.data.events)) {