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:
Kim Alvefur 2023-11-26 22:58:11 +01:00
parent ad3ab533ed
commit f5f64e3bdc

View file

@ -249,8 +249,7 @@ module:hook("iq-get/self/"..xmlns_mam..":metadata", function (event)
return true; return true;
end end
local id, _, when = first(); for id, _, when in first do
if id then
reply:tag("start", { id = id, timestamp = timestamp(when) }):up(); reply:tag("start", { id = id, timestamp = timestamp(when) }):up();
end end
end end
@ -262,8 +261,7 @@ module:hook("iq-get/self/"..xmlns_mam..":metadata", function (event)
return true; return true;
end end
local id, _, when = last(); for id, _, when in last do
if id then
reply:tag("end", { id = id, timestamp = timestamp(when) }):up(); reply:tag("end", { id = id, timestamp = timestamp(when) }):up();
end end
end end