aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2010-12-12 15:42:00 +0500
committerWaqas Hussain <waqas20@gmail.com>2010-12-12 15:42:00 +0500
commit66fd1d3e538e3a1b488368ed5fb90fcf522408d8 (patch)
tree731482da78d871381af71f863d0d6d8d823981ea
parent4094aae19e7c3e6a7e9ac2c350eff19d2343efd6 (diff)
downloadprosody-66fd1d3e538e3a1b488368ed5fb90fcf522408d8.tar.gz
prosody-66fd1d3e538e3a1b488368ed5fb90fcf522408d8.zip
mod_pep: Fixed a traceback when non-local users send presence.
-rw-r--r--plugins/mod_pep.lua2
1 files changed, 1 insertions, 1 deletions
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"})