From: Waqas Hussain Date: Sun, 12 Dec 2010 10:42:00 +0000 (+0500) Subject: mod_pep: Fixed a traceback when non-local users send presence. X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=568fcff2e59affcd3a4bcfe9c004986cfceeb752;p=prosody.git mod_pep: Fixed a traceback when non-local users send presence. --- diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua index f215b8be..9ff6cac2 100644 --- a/plugins/mod_pep.lua +++ b/plugins/mod_pep.lua @@ -134,7 +134,7 @@ module:hook("presence/bare", function(event) publish_all(user, recipient, origin); else recipients[user][recipient] = hash; - local from_bare = origin.username.."@"..origin.host; + local from_bare = origin.type == "c2s" and origin.username.."@"..origin.host; if self or origin.type ~= "c2s" or (recipients[from_bare] and recipients[from_bare][origin.full_jid]) ~= hash then origin.send( st.stanza("iq", {from=stanza.attr.to, to=stanza.attr.from, id="disco", type="get"})