diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-12-18 03:25:31 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-12-18 03:25:31 +0000 |
commit | 114b761b59a54c46be5ca21a129fd031ec7e07be (patch) | |
tree | 56988d09a3343b2df7e5be4acdd483e2716501d7 | |
parent | 38df8cd28e27fd69e7c28bc04ca168a643da45b8 (diff) | |
download | prosody-114b761b59a54c46be5ca21a129fd031ec7e07be.tar.gz prosody-114b761b59a54c46be5ca21a129fd031ec7e07be.zip |
mod_storage_sql: Fix a couple of bugs in "JSON" decoding
-rw-r--r-- | plugins/mod_storage_sql.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_storage_sql.lua b/plugins/mod_storage_sql.lua index e3eb3c77..3d5aa0a3 100644 --- a/plugins/mod_storage_sql.lua +++ b/plugins/mod_storage_sql.lua @@ -25,7 +25,7 @@ local tonumber = tonumber; local pairs = pairs; local next = next; local setmetatable = setmetatable; -local json = { stringify = function(s) return require"util.serialization".serialize(s) end, parse = require"util.serialization".deserialze }; +local json = { stringify = function(s) return require"util.serialization".serialize(s) end, parse = require"util.serialization".deserialize }; local connection = ...; local host,user,store = module.host; @@ -79,7 +79,7 @@ local function deserialize(t, value) if value == "true" then return true; elseif value == "false" then return false; end elseif t == "number" then return tonumber(value); - elseif value == "json" then + elseif t == "json" then return json.parse(value); end end |