mod_roster fix

This commit is contained in:
Waqas Hussain 2008-11-02 02:23:52 +05:00
parent 084b66894b
commit 3a14c1ab21
2 changed files with 3 additions and 2 deletions

View file

@ -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

View file

@ -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);