mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.json: Fix encoding of json.null (bug introduced in bf1f09a5bcf7)
This commit is contained in:
parent
61688d5064
commit
df618247d3
1 changed files with 3 additions and 1 deletions
|
@ -145,7 +145,9 @@ end
|
|||
|
||||
function simplesave(o, buffer)
|
||||
local t = type(o);
|
||||
if t == "number" then
|
||||
if o == null then
|
||||
t_insert(buffer, "null");
|
||||
elseif t == "number" then
|
||||
t_insert(buffer, tostring(o));
|
||||
elseif t == "string" then
|
||||
stringsave(o, buffer);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue