Commit 01025bfb authored by Alex Wenckus's avatar Alex Wenckus Committed by alex

Namespace will no longer be included as part of packets in the packet parsing process.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@6402 b35dd754-fafc-0310-a699-88a17e54d16e
parent 5fd0f9ed
......@@ -374,7 +374,8 @@ public class XMPPPacketReader {
if ("jabber:client".equals(qname.getNamespaceURI()) ||
"jabber:server".equals(qname.getNamespaceURI()) ||
"jabber:connectionmanager".equals(qname.getNamespaceURI()) ||
"jabber:component:accept".equals(qname.getNamespaceURI())) {
"jabber:component:accept".equals(qname.getNamespaceURI()) ||
"http://jabber.org/protocol/httpbind".equals(qname.getNamespaceURI())) {
newElement = df.createElement(pp.getName());
}
else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment