Hi All
I like to create repeat process in the flow and I am using go to label and attribute inside it
the problem is with the attribute , its not updated , value is always come from previous chat session
my flow is finish until the return value from http is finish or done , its look like this
- bot new message ( triger flow) ---->
- set attribute (msg_user : new.message.message ) —>
- repeat label —>
- http request parsing attribute msg value as query ->
- ask user with text ( text is from http result_speech_value ) filter if http result_fulliment not equal as "finish or done "
- set attribute ( msg :ask_user_answered value )
- goto repeat label if if http result_fulliment not equal as “finish or done”
- finish
its keep repeating until http request said finish
however the attribute driving me crazy , its not update every time I set attribute ,
the value is always from previous chat session , it make my bot is parsing same string all the time to http API request
I am using bot new message response path to set the attribute value
is there is I am missing here ??