1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-11-10 14:16:00 +01:00

Fix StreamManagement.Failed.toXML()

Note that this method is currently not used by Smack, as XMPP clients
usually do not emit that Nonza.
This commit is contained in:
Florian Schmaus 2018-04-07 23:10:58 +02:00
parent d275d9a7da
commit 270e378287

View file

@ -225,10 +225,11 @@ public class StreamManagement {
if (condition == null && textElements.isEmpty()) { if (condition == null && textElements.isEmpty()) {
xml.closeEmptyElement(); xml.closeEmptyElement();
} else { } else {
xml.rightAngleBracket();
if (condition != null) { if (condition != null) {
xml.rightAngleBracket();
xml.append(condition.toString()); xml.append(condition.toString());
xml.xmlnsAttribute(StanzaError.NAMESPACE); xml.xmlnsAttribute(StanzaError.NAMESPACE);
xml.closeEmptyElement();
} }
xml.append(textElements); xml.append(textElements);
xml.closeElement(ELEMENT); xml.closeElement(ELEMENT);