mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Added session property for interested resources
This commit is contained in:
parent
4bd562b306
commit
6701f399ad
2 changed files with 2 additions and 1 deletions
|
@ -76,7 +76,7 @@ function roster_push(username, host, jid)
|
|||
stanza:up();
|
||||
-- stanza ready
|
||||
for _, session in pairs(hosts[host].sessions[username].sessions) do
|
||||
if session.full_jid then
|
||||
if session.interested then
|
||||
-- FIXME do we need to set stanza.attr.to?
|
||||
session.send(stanza);
|
||||
end
|
||||
|
|
|
@ -26,6 +26,7 @@ add_iq_handler("c2s", "jabber:iq:roster",
|
|||
end
|
||||
end
|
||||
send(session, roster);
|
||||
session.interested = true; -- resource is interested in roster updates
|
||||
return true;
|
||||
elseif stanza.attr.type == "set" then
|
||||
local query = stanza.tags[1];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue