From b0d3b82400abc1d3ae591e3a5b313584dda612a4 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sat, 15 Sep 2012 14:25:18 +0000 Subject: [PATCH] libs/web: transparently handle userdata in write_json() --- libs/web/luasrc/http.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/web/luasrc/http.lua b/libs/web/luasrc/http.lua index 60a3e07228..18112507ce 100644 --- a/libs/web/luasrc/http.lua +++ b/libs/web/luasrc/http.lua @@ -339,7 +339,7 @@ function write_json(x) else write(tostring(x)) end - elseif type(x) == "string" then + else write("%q" % tostring(x)) end end -- 2.30.2