mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.serialization: Correctly serialize tables with 'false' as a key, fixes an issue with rosters not saving (thanks mathias, Tobias)
This commit is contained in:
parent
22d8917d8c
commit
2e3f2e68d7
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue