Skip to content

Commit

Permalink
Quick patch of major bug
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-cotton committed Feb 27, 2018
1 parent b807b0d commit 5f4c498
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/actions-on-google/model/Activity.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = class Activity {
const expectingInput = ((this.activityData.inputHint) && (this.activityData.inputHint == 'expectingInput')) ? true : false;
const ignoringInput = ((this.activityData.inputHint) && (this.activityData.inputHint == 'ignoringInput')) ? true : false;

const shouldLeaveSessionOpen = defaultLeaveSessionOpen;
let shouldLeaveSessionOpen = defaultLeaveSessionOpen;

if(expectingInput) {
shouldLeaveSessionOpen = true;
Expand Down

0 comments on commit 5f4c498

Please sign in to comment.