mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_roster fix
This commit is contained in:
parent
084b66894b
commit
3a14c1ab21
2 changed files with 3 additions and 2 deletions
|
@ -59,8 +59,8 @@ function roster_push(username, host, jid)
|
|||
else
|
||||
stanza:tag("item", {jid = jid, subscription = "remove"});
|
||||
end
|
||||
stanza:up();
|
||||
stanza:up();
|
||||
stanza:up(); -- move out from item
|
||||
stanza:up(); -- move out from stanza
|
||||
-- stanza ready
|
||||
for _, session in pairs(hosts[host].sessions[username].sessions) do
|
||||
if session.interested then
|
||||
|
|
|
@ -26,6 +26,7 @@ add_iq_handler("c2s", "jabber:iq:roster",
|
|||
for group in pairs(session.roster[jid].groups) do
|
||||
roster:tag("group"):text(group):up();
|
||||
end
|
||||
roster:up(); -- move out from item
|
||||
end
|
||||
end
|
||||
send(session, roster);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue