mod_pubsub: Send correct jid attribute in disco#items

Fixes use in PEP where the JID does not equal the bare domain.
This commit is contained in:
Kim Alvefur 2023-07-08 18:23:40 +02:00
parent 960f406662
commit c82f504f6a

View file

@ -309,7 +309,7 @@ function _M.handle_disco_items_node(event, service)
end
for _, id in ipairs(ret) do
reply:tag("item", { jid = service.jid or module.host, name = id }):up();
reply:tag("item", { jid = service.config.jid or module.host, name = id }):up();
end
event.exists = true;
end