aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2010-12-12 06:35:53 +0500
committerWaqas Hussain <waqas20@gmail.com>2010-12-12 06:35:53 +0500
commit4094aae19e7c3e6a7e9ac2c350eff19d2343efd6 (patch)
treeb8bd93530bf86dc81811199f96f9f972db6ec2fb /plugins
parent31cd341b7da2df0966ea76d04f67eeb410a3b5cb (diff)
downloadprosody-4094aae19e7c3e6a7e9ac2c350eff19d2343efd6.tar.gz
prosody-4094aae19e7c3e6a7e9ac2c350eff19d2343efd6.zip
mod_pep: Handle the case where local contacts send directed presence with caps hash.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_pep.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua
index 28c31294..f215b8be 100644
--- a/plugins/mod_pep.lua
+++ b/plugins/mod_pep.lua
@@ -134,7 +134,8 @@ module:hook("presence/bare", function(event)
publish_all(user, recipient, origin);
else
recipients[user][recipient] = hash;
- if self or origin.type ~= "c2s" then
+ local from_bare = 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"})
:query("http://jabber.org/protocol/disco#info")