Skip to content

Commit

Permalink
fix(gbapp\AskDialog): Supress Echo Nothing_else
Browse files Browse the repository at this point in the history
  • Loading branch information
matheus39x committed May 23, 2023
1 parent 2069f9d commit 4ee3012
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/kb.gbapp/dialogs/AskDialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,11 @@ export class AskDialog extends IGBDialog {
if (step.options && step.options.firstTime) {
text = Messages[locale].ask_first_time;
}
//cut by Matheus Cavalieri (overnetbh)
//requested by PH
// else if (step.options && step.options.isReturning && !step.context.activity.group) {
// text = Messages[locale].anything_else;
// }
// }
else if (step.context.activity.group || (step.options && step.options.emptyPrompt)) {
text = '';
} else if (user.subjects.length > 0) {
Expand Down

0 comments on commit 4ee3012

Please sign in to comment.