mod_storage_sql: Fix logic error introduced by variable rename in aa9f198cb3c9 (thanks waqas)

This commit is contained in:
Matthew Wild 2017-04-30 10:44:53 +01:00
parent afa9082458
commit 4812b7e07c

View file

@ -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;