Software /
code /
prosody
Changeset
8050:c0f81dea4662
mod_storage_sql: Fix to use correct SQL query (thanks carlos)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 03 Apr 2017 00:34:37 +0200 |
parents | 8048:75e37366a03f |
children | 8051:b2681397bafa 8052:f83a2d4826fb |
files | plugins/mod_storage_sql.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_storage_sql.lua Sun Apr 02 22:26:52 2017 +0200 +++ b/plugins/mod_storage_sql.lua Mon Apr 03 00:34:37 2017 +0200 @@ -95,7 +95,7 @@ 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