mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_storage_sql: Fix logic error introduced by variable rename in aa9f198cb3c9 (thanks waqas)
This commit is contained in:
parent
afa9082458
commit
4812b7e07c
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ local function serialize(value)
|
|||
return "xml", tostring(value);
|
||||
elseif t == "table" then
|
||||
local encoded,err = json.encode(value);
|
||||
if value then return "json", encoded; end
|
||||
if encoded then return "json", encoded; end
|
||||
return nil, err;
|
||||
end
|
||||
return nil, "Unhandled value type: "..t;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue