fix alexa bug with no speak action

This commit is contained in:
GotPPay
2018-01-24 13:14:47 +01:00
parent 4f6c714fa3
commit 145fff3b51

View File

@@ -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);