dear all,
i wish to create one group chat using chatview module, and i’m using blocks structure like below;
but i get error below.
is it i cannot use structure above for multiple user login, but one same fixed receiver?
dear all,
i wish to create one group chat using chatview module, and i’m using blocks structure like below;
ou are doing something like:
if is key in dictionary? → get value from dictionary → use that value as the key
But the correct block must be:
if is key in dictionary? → get actual key like tag (“1750569704386”)
i suggest
do this buggy part:
is key in dictionary? get value → ([“You”, “hi”])
With the correct:
is key in dictionary? get tag (like “1750569704386”)
If you’re looping through Firebase data or using a list picker, make sure you’re checking the key (e.g. get tag) and not the value (like [“You”, “hi”]).