util.json: Fix encoding of json.null (bug introduced in bf1f09a5bcf7)

This commit is contained in:
Matthew Wild 2016-03-04 22:27:04 +00:00
parent 61688d5064
commit df618247d3

View file

@ -145,7 +145,9 @@ end
function simplesave(o, buffer) function simplesave(o, buffer)
local t = type(o); 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)); t_insert(buffer, tostring(o));
elseif t == "string" then elseif t == "string" then
stringsave(o, buffer); stringsave(o, buffer);