Amazon default intents not working with dialog

This commit is contained in:
GotPPay
2018-01-23 02:23:59 +01:00
parent 0a8eb2e280
commit cc579133c0

View File

@@ -159,15 +159,6 @@ module.exports = {
}
};
//Defaul Amazon handlers (some of them)
handlers['AMAZON.HelpIntent'] = function () {
console.log ('Help intent');
this.response
.speak (listOfPossibleQuestions)
.listen (constants.voiceResponseStrings.GENERIC_CONTINUE); //Phrase from listen doesn't work !!!
};
//Default handlers for unknown questions and session close
handlers.Unhandled = function () {