diff options
author | Kim Alvefur <zash@zash.se> | 2018-08-18 14:06:23 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-08-18 14:06:23 +0200 |
commit | 6ba3049a78124d983a23668419af4c1b2ee97e96 (patch) | |
tree | fc374576a6dc7d6a253b7b2bff7c41aa8af970ca /plugins/muc/muc.lib.lua | |
parent | c245e1ae115f61315db3439dc05c9dc50935582a (diff) | |
download | prosody-6ba3049a78124d983a23668419af4c1b2ee97e96.tar.gz prosody-6ba3049a78124d983a23668419af4c1b2ee97e96.zip |
MUC: Direct PubSub queries to occupants to their real bare JID
This allows accessing PEP nodes of participants without knowing their
real JIDs.
Diffstat (limited to 'plugins/muc/muc.lib.lua')
-rw-r--r-- | plugins/muc/muc.lib.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index aae1d155..2d643219 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -727,7 +727,8 @@ function room_mt:handle_iq_to_occupant(origin, stanza) end stanza.attr.from, stanza.attr.to = current_nick, occupant.jid; log("debug", "%s sent private iq stanza to %s (%s)", from, to, occupant.jid); - if stanza.tags[1].attr.xmlns == 'vcard-temp' then + local iq_ns = stanza.tags[1].attr.xmlns; + if iq_ns == 'vcard-temp' or iq_ns == "http://jabber.org/protocol/pubsub" then stanza.attr.to = jid_bare(stanza.attr.to); end self:route_stanza(stanza); |