Below is the code.
The line in red is the one that crashes Thunkable.
[Before it tries to make list from text, the text is “bob@com,ooareoo@com,test@com”]
1 Like
You are handling object as a string, which might lead to the error.
Set this to the value of your variable called Decoder:
3 Likes
Thanks for that!
1 Like
Actually, get object properties
returns a List
so you are trying to use the block make list from text
in making list from list.
You could simply say [set app variable Sites] to [app variable Decoder] if you want to have two separate identical lists.
3 Likes
Ah ok, thanks for that!
1 Like