mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
Minor fix
This commit is contained in:
parent
042012b729
commit
9048ca5328
1 changed files with 2 additions and 1 deletions
|
@ -5,6 +5,7 @@ local char = string.char;
|
||||||
local loadfile, setfenv, pcall = loadfile, setfenv, pcall;
|
local loadfile, setfenv, pcall = loadfile, setfenv, pcall;
|
||||||
local log = log;
|
local log = log;
|
||||||
local io_open = io.open;
|
local io_open = io.open;
|
||||||
|
local tostring = tostring;
|
||||||
|
|
||||||
module "datamanager"
|
module "datamanager"
|
||||||
|
|
||||||
|
@ -30,7 +31,7 @@ local function basicSerialize (o)
|
||||||
if type(o) == "number" or type(o) == "boolean" then
|
if type(o) == "number" or type(o) == "boolean" then
|
||||||
return tostring(o)
|
return tostring(o)
|
||||||
else -- assume it is a string
|
else -- assume it is a string
|
||||||
return string.format("%q", tostring(o))
|
return format("%q", tostring(o))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue