mod_pep: Fixed detection of contact presence changes

This commit is contained in:
Waqas Hussain 2009-06-24 19:24:02 +05:00
parent df420bb8e6
commit 0ad0b31f47

View file

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