aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_storage_sql.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-05-17 01:06:20 +0200
committerKim Alvefur <zash@zash.se>2017-05-17 01:06:20 +0200
commit9b9d6a9ba97ee9160fcd4d28e2509ca768d15de7 (patch)
tree87920ea2589baddc568772aeebb1fda17b5c9e0c /plugins/mod_storage_sql.lua
parent0c291f3a41eb20f4af48c535eb3b7cfa144b5778 (diff)
parentbd52588649aae5fffa05f1f60d3a9dcd27281271 (diff)
downloadprosody-9b9d6a9ba97ee9160fcd4d28e2509ca768d15de7.tar.gz
prosody-9b9d6a9ba97ee9160fcd4d28e2509ca768d15de7.zip
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_storage_sql.lua')
-rw-r--r--plugins/mod_storage_sql.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_storage_sql.lua b/plugins/mod_storage_sql.lua
index 5eb0cf7d..e53deef3 100644
--- a/plugins/mod_storage_sql.lua
+++ b/plugins/mod_storage_sql.lua
@@ -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;