Skip to content

Commit

Permalink
ending the session when they opt out of sms
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Edwards authored and Chris Edwards committed Jan 14, 2017
1 parent 72cbd7a commit 8d813c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ app.intent('AMAZON.YesIntent', (req, res) => {

app.intent('AMAZON.NoIntent', (req, res) => {
res.say('This list will be here anytime you needed! thanks for taking the first step towards getting involved')
.shouldEndSession(false)
.shouldEndSession(true)
.send();
return false;
});
Expand Down

0 comments on commit 8d813c6

Please sign in to comment.