diff options
author | Waqas Hussain <waqas20@gmail.com> | 2009-09-09 20:48:25 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2009-09-09 20:48:25 +0500 |
commit | e4eeb59cec524c9af9fdf03dfabbcd8b632490c9 (patch) | |
tree | 758324472d9d1d0b76bed2cd4060420a7c618185 /plugins/muc | |
parent | 603b4ce3687e21f3bcf97ba98c43a7bf15ea63d8 (diff) | |
download | prosody-e4eeb59cec524c9af9fdf03dfabbcd8b632490c9.tar.gz prosody-e4eeb59cec524c9af9fdf03dfabbcd8b632490c9.zip |
MUC: Preserve stanza attributes for private messages.
Diffstat (limited to 'plugins/muc')
-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 f8fd0fcd..04fc29cf 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -300,9 +300,10 @@ function room_mt:handle_to_occupant(origin, stanza) -- PM, vCards, etc if o_data then log("debug", "%s sent private stanza to %s (%s)", from, to, o_data.jid); local jid = o_data.jid; - -- TODO if stanza.name=='iq' and type=='get' and stanza.tags[1].attr.xmlns == 'vcard-temp' then jid = jid_bare(jid); end stanza.attr.to, stanza.attr.from = jid, current_nick; + -- TODO if stanza.name=='iq' and type=='get' and stanza.tags[1].attr.xmlns == 'vcard-temp' then jid = jid_bare(jid); end self:route_stanza(stanza); + stanza.attr.to, stanza.attr.from = to, from; elseif type ~= "error" and type ~= "result" then -- recipient not in room origin.send(st.error_reply(stanza, "cancel", "item-not-found", "Recipient not in room")); end |