mod_pubsub: Remove unused loop variable [luacheck]

This commit is contained in:
Kim Alvefur 2025-01-08 08:54:52 +01:00
parent 4569e951af
commit f9731db67b

View file

@ -184,7 +184,7 @@ module:hook("host-disco-items", function (event)
if not ok then
return;
end
for node, node_obj in pairs(ret) do
for node in pairs(ret) do
local ok, meta = service:get_node_metadata(node, stanza.attr.from);
if ok then
reply:tag("item", { jid = module.host, node = node, name = meta.title }):up();