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
If group by has not been configured, so that its value is None (null in json), sending a command to emit with no group specified will not work. I found that I needed to set a group as a static string, and send emit commands with the group parameter.
The text was updated successfully, but these errors were encountered:
Looks like when sending a request without group param, it is passed to the blocks emit method as a string "None", rather than the NoneType that matches the actual group. Because it's a string, the evaluation to emit all groups when no group is specified is failing, and it is instead trying to emit signals from a nonexistent group "None"
If
group by
has not been configured, so that its value isNone
(null
in json), sending a command toemit
with nogroup
specified will not work. I found that I needed to set a group as a static string, and sendemit
commands with thegroup
parameter.The text was updated successfully, but these errors were encountered: