We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to reset current state after first answer on command?
For example user need to add his name once:
(how it has to be) U: /name B: Write your name U: John B: Thanks, John. U: Mike ....nothing happens
(how it is) U: /name B: Write your name U: John B: Thanks, John. U: Mike B: Thanks, Mike. U: Pavel B: Thanks, Mike. ..
These methods doesn't help: context.go() context.goParent() context.goBack() context.repeat() context.end()
The text was updated successfully, but these errors were encountered:
Hi, it works this way because the text interpreted as an answer. If you want to finish this command and go to other command, use context.go:
context.go
context.go('start')
Sorry, something went wrong.
No branches or pull requests
How to reset current state after first answer on command?
For example user need to add his name once:
(how it has to be)
U: /name
B: Write your name
U: John
B: Thanks, John.
U: Mike
....nothing happens
(how it is)
U: /name
B: Write your name
U: John
B: Thanks, John.
U: Mike
B: Thanks, Mike.
U: Pavel
B: Thanks, Mike.
..
These methods doesn't help:
context.go()
context.goParent()
context.goBack()
context.repeat()
context.end()
The text was updated successfully, but these errors were encountered: