-
Posts
153 -
Joined
-
Last visited
Community Answers
-
Actium's post in net.lua2json(t): Crashes game if t contains cycles (SEGFAULT) was marked as the answer
This issue has been fixed in DCS 2.9.14.8222. Unserializable values will now be substituted with null. The following example code
local t = {a = 1, b = 2, d = 4} t["c"] = t return net.lua2json(t) now returns {"a":1,"d":4,"c":null,"b":2}.