X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=util%2Fserialization.lua;h=7071d3f75e03f4af116919ff53f29fbf9b1578f6;hb=322fdb77fe58eafac7204955fb5b3146ee8700ea;hp=2a1fad029f7ba53122076b262965958d10f6ece6;hpb=6b328d3660ebb9a61009e911f5a79206d4e5d513;p=prosody.git diff --git a/util/serialization.lua b/util/serialization.lua index 2a1fad02..7071d3f7 100644 --- a/util/serialization.lua +++ b/util/serialization.lua @@ -35,7 +35,7 @@ local function _simplesave(o, ind, t, func) elseif type(o) == "string" then func(t, (("%q"):format(o):gsub("\\\n", "\\n"))); elseif type(o) == "table" then - if next(o) then + if next(o) ~= nil then func(t, "{\n"); for k,v in pairs(o) do func(t, indent(ind)); @@ -47,7 +47,7 @@ local function _simplesave(o, ind, t, func) else _simplesave(v, ind+1, t, func); end - func(t, ",\n"); + func(t, ";\n"); end func(t, indent(ind-1)); func(t, "}");