diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-08-24 23:16:08 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-08-24 23:16:08 +0100 |
commit | dc95231f96b825d9bca6eb228e1a3f4edcac244a (patch) | |
tree | 46ee70e977ded44ebeb42ca6007865fd3f5996f3 | |
parent | 7b4559a4f29dfae40494621bb5c1d587d1c36c91 (diff) | |
parent | 65c94b76eefa120d2f28e6c470bb9f9a8f23e7e1 (diff) | |
download | prosody-dc95231f96b825d9bca6eb228e1a3f4edcac244a.tar.gz prosody-dc95231f96b825d9bca6eb228e1a3f4edcac244a.zip |
Merge 0.9->trunk
-rw-r--r-- | plugins/mod_pep.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua index 04f70221..752cd28c 100644 --- a/plugins/mod_pep.lua +++ b/plugins/mod_pep.lua @@ -135,7 +135,7 @@ module:hook("presence/bare", function(event) recipients[user][recipient] = hash; 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 - -- COMPAT from ~= stanza.attr.to because OneTeam can't deal with missing from attribute + -- COMPAT from ~= stanza.attr.to because OneTeam and Asterisk 1.8 can't deal with missing from attribute origin.send( st.stanza("iq", {from=user, to=stanza.attr.from, id="disco", type="get"}) :query("http://jabber.org/protocol/disco#info") |