Hi,
I need to call 2 actions from inside another action. I managed to call one action from another action by returning FollowupAction, and it works well if it’s only one. However, if the actions are more than one, it seems to always return only the last of those. In my example, I’m returning this:
return [FollowupAction("action_current_dose"), FollowupAction("action_time_remaining")]
But instead of executing both actions, it executes only the second one twice.
Does anybody know how to help me?
Thanks, Tiziano