aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_storage_sql.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-05-28 00:47:50 +0200
committerKim Alvefur <zash@zash.se>2019-05-28 00:47:50 +0200
commit7b63f8d95dcc99df5508a05c60fe472dfc2a4282 (patch)
treec344febedb8ed7236256dce1fb913f0ac91e80e9 /plugins/mod_storage_sql.lua
parent5a2a81bfe97c366e6da39442534b4e58ba64ae71 (diff)
downloadprosody-7b63f8d95dcc99df5508a05c60fe472dfc2a4282.tar.gz
prosody-7b63f8d95dcc99df5508a05c60fe472dfc2a4282.zip
mod_storage_sql: Fix to use correct arguments to archive id lookup
Diffstat (limited to 'plugins/mod_storage_sql.lua')
-rw-r--r--plugins/mod_storage_sql.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_storage_sql.lua b/plugins/mod_storage_sql.lua
index cfc8450c..ad2de840 100644
--- a/plugins/mod_storage_sql.lua
+++ b/plugins/mod_storage_sql.lua
@@ -336,7 +336,7 @@ local function archive_where_id_range(query, args, where)
]];
if query.after then -- keys better be unique!
local after_id = nil;
- for row in engine:select(id_lookup_sql, query.after, host, user or "", store) do
+ for row in engine:select(id_lookup_sql, query.after, args[1], args[2], args[3]) do
after_id = row[1];
end
if not after_id then
@@ -347,7 +347,7 @@ local function archive_where_id_range(query, args, where)
end
if query.before then
local before_id = nil;
- for row in engine:select(id_lookup_sql, query.after, host, user or "", store) do
+ for row in engine:select(id_lookup_sql, query.after, args[1], args[2], args[3]) do
before_id = row[1];
end
if not before_id then