When the user sends a message before the trigger i...
# 🤝help
e
When the user sends a message before the trigger is activated it triggers my chatbot 2 times, how can I avoid this double trigger?
f
Maybe you can use a flag?
So create a boolean variable
and in both paths, between the start node and the first node, add a check
same between the trigger and the first node
in the check, check if the boolean variable is true, if it is true, then move to the next node, if it is false, then continue
b
you could also only connect the Trigger to the rest of your bot and ignore the Start node, since the default Start node is activated on the user's first message
5 Views