mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_presence: Reflect the user's own presence back to them.
This commit is contained in:
parent
93d80250eb
commit
a58fef84ce
1 changed files with 3 additions and 0 deletions
|
@ -63,6 +63,9 @@ local function recalc_resource_map(user)
|
|||
end
|
||||
|
||||
function handle_normal_presence(origin, stanza, core_route_stanza)
|
||||
if full_sessions[origin.full_jid] then -- if user is still connected
|
||||
origin.send(stanza); -- reflect their presence back to them
|
||||
end
|
||||
local roster = origin.roster;
|
||||
local node, host = origin.username, origin.host;
|
||||
local user = bare_sessions[node.."@"..host];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue