diff options
author | Badlop <badlop@process-one.net> | 2007-12-20 20:02:04 +0000 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2007-12-20 20:02:04 +0000 |
commit | 36f9af523c5d22a026a73b68071148f6572ba753 (patch) | |
tree | f029394e1431c782bd756c250228834ce5bf9fd7 | |
parent | User count performance improvements (diff) |
* src/mod_caps.erl: Don't include the Node attribute from C
element in the disco#info query
SVN Revision: 1087
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/mod_caps.erl | 3 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2007-12-20 Badlop <badlop@process-one.net> + + * src/mod_caps.erl: Don't include the Node attribute from C + element in the disco#info query + 2007-12-20 Christophe Romain <christophe.romain@process-one.net> * doc/guide.tex: Explain how to launch installer and improve diff --git a/src/mod_caps.erl b/src/mod_caps.erl index cb6bc63d7..a5ae8bbbc 100644 --- a/src/mod_caps.erl +++ b/src/mod_caps.erl @@ -186,8 +186,7 @@ handle_cast({note_caps, From, [{"type", "get"}, {"id", ID}], [{xmlelement, "query", - [{"xmlns", ?NS_DISCO_INFO}, - {"node", Node ++ "#" ++ SubNode}], + [{"xmlns", ?NS_DISCO_INFO}], []}]}, ejabberd_local:register_iq_response_handler (Host, ID, ?MODULE, handle_disco_response), |