mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
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:
parent
960f406662
commit
c82f504f6a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue