mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Fix for saving tables with non-string keys
This commit is contained in:
parent
584b40a682
commit
d90bbc6293
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ local function simplesave (f, o)
|
|||
elseif type(o) == "table" then
|
||||
f:write("{\n")
|
||||
for k,v in pairs(o) do
|
||||
f:write(" [", format("%q", k), "] = ")
|
||||
f:write(" [", basicSerialize(k), "] = ")
|
||||
simplesave(f, v)
|
||||
f:write(",\n")
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue