mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 22:57:38 +03:00
mod_pep: Fixed detection of contact presence changes
This commit is contained in:
parent
df420bb8e6
commit
0ad0b31f47
1 changed files with 2 additions and 2 deletions
|
@ -41,9 +41,9 @@ local function publish(session, node, item)
|
|||
end
|
||||
end
|
||||
|
||||
module:hook("presence/bare", function(data)
|
||||
module:hook("presence/bare", function(event)
|
||||
-- inbound presence to bare JID recieved
|
||||
local origin, stanza = data.origin, data.stanza;
|
||||
local origin, stanza = event.origin, event.stanza;
|
||||
|
||||
local user = stanza.attr.to or (origin.username..'@'..origin.host);
|
||||
local bare = jid_bare(stanza.attr.from);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue