We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e26840e commit ef0a218Copy full SHA for ef0a218
1 file changed
spawn/eigr/functions/actors/internal/controller.py
@@ -165,7 +165,9 @@ def to_effect(ef: Effect):
165
def handle_broadcast(value_broadcast):
166
broadcast = Broadcast()
167
broadcast.channel_group = value_broadcast.channel
168
- broadcast.action_name = value_broadcast.action_name
+
169
+ if value_broadcast.action_name:
170
+ broadcast.action_name = value_broadcast.action_name
171
172
if value_broadcast.value == None:
173
broadcast.noop = Noop()
0 commit comments