Hello,
I am trying to upload a table to iCloud. When I download it again, it is broken, I have absolutely no idea why that happens. It always cuts the table where the first “false” is. I have tried that with several options, booleans and strings, it is always the same.
theTable = {true, true, true, false, false} iCloud.set("theTable", json.encode(theTable)) --- theTableDownload = iCloud.get("theTable") theTableDownload = json.decode(theTableDownload) -- this is the remaining table: {true, true true}