aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2009-06-14 17:33:22 +0500
committerWaqas Hussain <waqas20@gmail.com>2009-06-14 17:33:22 +0500
commit1bd4a36326f6dd9965a95b617cc83ddd7be69b83 (patch)
tree750562c5c14505b07f34c069446860ecf41860d0 /util
parentf52647433b521b35ce906c96ede576e76ad65e4c (diff)
downloadprosody-1bd4a36326f6dd9965a95b617cc83ddd7be69b83.tar.gz
prosody-1bd4a36326f6dd9965a95b617cc83ddd7be69b83.zip
util.muc, mod_muc: Commented rewriting of vCard requests' recipients' JID from full to bare, and marked it as a TODO
Diffstat (limited to 'util')
-rw-r--r--util/muc.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/muc.lua b/util/muc.lua
index 6e7e152d..8f6963f8 100644
--- a/util/muc.lua
+++ b/util/muc.lua
@@ -274,7 +274,7 @@ local function room_handle_to_occupant(self, 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;
- if stanza.name=='iq' and type=='get' and stanza.tags[1].attr.xmlns == 'vcard-temp' then jid = jid_bare(jid); end
+ -- 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;
self:route_stanza(stanza);
elseif type ~= "error" and type ~= "result" then -- recipient not in room