diff options
author | Tobias Markmann <tm@ayena.de> | 2014-10-13 11:47:14 (GMT) |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2014-10-13 14:09:45 (GMT) |
commit | da894fc2d49f179e93fee660b235aa960f23d673 (patch) | |
tree | 808f0cb0aae8a0784059594037bd04358c125a05 /Swiften/Serializer/UnitTest | |
parent | 3f9c73993358b3636e3244f3e29cb4ee916e7b02 (diff) | |
download | swift-da894fc2d49f179e93fee660b235aa960f23d673.zip swift-da894fc2d49f179e93fee660b235aa960f23d673.tar.bz2 |
Correctly set 'jabber:client' namespace on message/presence/IQ stanzas for BOSH connections.
Test-Information:
Tested with Swift and interoperability against Psi. Swift debug log now correctly
shows the namespace being set. Previously Psi did not display the body of messages
due to them being in the worng namespace. Now as they are in the correct namespace
messages are displayed correctly by Psi.
Change-Id: I547e335100abebfcf170cf7f41b86fd2dbb01692
Diffstat (limited to 'Swiften/Serializer/UnitTest')
-rw-r--r-- | Swiften/Serializer/UnitTest/XMPPSerializerTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/Serializer/UnitTest/XMPPSerializerTest.cpp b/Swiften/Serializer/UnitTest/XMPPSerializerTest.cpp index c0ab841..83daf36 100644 --- a/Swiften/Serializer/UnitTest/XMPPSerializerTest.cpp +++ b/Swiften/Serializer/UnitTest/XMPPSerializerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010 Remko Tronçon + * Copyright (c) 2010-2014 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ @@ -65,7 +65,7 @@ class XMPPSerializerTest : public CppUnit::TestFixture { private: XMPPSerializer* createSerializer(StreamType type) { - return new XMPPSerializer(payloadSerializerCollection, type); + return new XMPPSerializer(payloadSerializerCollection, type, false); } private: |