mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
parent
49a9a1e76a
commit
2ec8fbe7e5
1 changed files with 1 additions and 2 deletions
|
@ -382,8 +382,7 @@ local function archive_where(query, args, where)
|
|||
-- Set of ids
|
||||
if query.ids then
|
||||
local nids, nargs = #query.ids, #args;
|
||||
-- COMPAT Lua 5.1: No separator argument to string.rep
|
||||
where[#where + 1] = "\"key\" IN (" .. string.rep("?,", nids):sub(1,-2) .. ")";
|
||||
where[#where + 1] = "\"key\" IN (" .. string.rep("?", nids, ",") .. ")";
|
||||
for i, id in ipairs(query.ids) do
|
||||
args[nargs+i] = id;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue