You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.
it repeats the question only if it is the last into queue of given thread. If there are any more questions (or messages) then user get the sayFirst message but then jumps to next question.
As I am creating single thread for every question I was able to use convo.trasitionTo('current_thread', 'something wrong, lets repeat') where current_thread is the one where the question is. Still, something is not right with that convo.repeat()
The text was updated successfully, but these errors were encountered:
I noticed the same thing here as well... any suggestions or workarounds? The transitionTo workaround is not displaying the message, the question just repeats.
You should definitely not use sayFirst and repeat in the same turn. Both modify the message queue - and in fact, repeat will call sayFirst in some cases.
This looks like a bug to me. Tested a lot and found that if I use
it repeats the question only if it is the last into queue of given thread. If there are any more questions (or messages) then user get the sayFirst message but then jumps to next question.
As I am creating single thread for every question I was able to use
convo.trasitionTo('current_thread', 'something wrong, lets repeat')
where current_thread is the one where the question is. Still, something is not right with thatconvo.repeat()
The text was updated successfully, but these errors were encountered: