From 145fff3b51a6ea57d41fe5d57407137fed592d94 Mon Sep 17 00:00:00 2001 From: GotPPay Date: Wed, 24 Jan 2018 13:14:47 +0100 Subject: [PATCH] fix alexa bug with no speak action --- backend/models/alexa.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/models/alexa.js b/backend/models/alexa.js index f53543e..e791b18 100644 --- a/backend/models/alexa.js +++ b/backend/models/alexa.js @@ -201,7 +201,7 @@ module.exports = { handlers.NoIntent = function (){ if (this.attributes['LaunchRequestYesNo']){ this.attributes['LaunchRequestYesNo'] = false; - this.response.listen(constants.voiceResponseStrings.GENERIC_CONTINUE); + this.response.speak('').listen(constants.voiceResponseStrings.GENERIC_CONTINUE); this.emit(':responseReady'); }else{ this.response.speak(constants.voiceResponseStrings.DIDNT_ASK_ANYTHING).listen(constants.voiceResponseStrings.GENERIC_CONTINUE);