diff options
author | Kim Alvefur <zash@zash.se> | 2017-04-03 00:59:44 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-04-03 00:59:44 +0200 |
commit | c5edea490f3205da545ac477b4715d35ebd36e70 (patch) | |
tree | 83d383d2fd52f09519e7ba1f11a1f8804f4d78da /plugins/mod_storage_sql.lua | |
parent | eb6122c3e9c7f34f089bf26f3950f0574b05db46 (diff) | |
parent | 1464d90adbcb4bc02af8974ede36707a5be2c2cb (diff) | |
download | prosody-c5edea490f3205da545ac477b4715d35ebd36e70.tar.gz prosody-c5edea490f3205da545ac477b4715d35ebd36e70.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_storage_sql.lua')
-rw-r--r-- | plugins/mod_storage_sql.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_storage_sql.lua b/plugins/mod_storage_sql.lua index 3f3e5e16..0fe4194a 100644 --- a/plugins/mod_storage_sql.lua +++ b/plugins/mod_storage_sql.lua @@ -95,7 +95,7 @@ local function keyval_store_set(data) for key, value in pairs(data) do if type(key) == "string" and key ~= "" then local t, encoded_value = assert(serialize(value)); - engine:insert(delete_sql, host, user or "", store, key, t, encoded_value); + engine:insert(insert_sql, host, user or "", store, key, t, encoded_value); else extradata[key] = value; end |