mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_mam: Use for loop in metadata query
Some storage drivers will perform cleanup after the last iteration, but if only one step is taken this might be delayed until the garbage collector gets to it.
This commit is contained in:
parent
ad3ab533ed
commit
f5f64e3bdc
1 changed files with 2 additions and 4 deletions
|
@ -249,8 +249,7 @@ module:hook("iq-get/self/"..xmlns_mam..":metadata", function (event)
|
|||
return true;
|
||||
end
|
||||
|
||||
local id, _, when = first();
|
||||
if id then
|
||||
for id, _, when in first do
|
||||
reply:tag("start", { id = id, timestamp = timestamp(when) }):up();
|
||||
end
|
||||
end
|
||||
|
@ -262,8 +261,7 @@ module:hook("iq-get/self/"..xmlns_mam..":metadata", function (event)
|
|||
return true;
|
||||
end
|
||||
|
||||
local id, _, when = last();
|
||||
if id then
|
||||
for id, _, when in last do
|
||||
reply:tag("end", { id = id, timestamp = timestamp(when) }):up();
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue