mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +01:00
Fix Forwarded.toXml(String): Set the correct enclosing XML namespace
This commit is contained in:
parent
cd5daa6fd7
commit
cb9a11b74e
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ public class Forwarded implements ExtensionElement {
|
|||
XmlStringBuilder xml = new XmlStringBuilder(this);
|
||||
xml.rightAngleBracket();
|
||||
xml.optElement(getDelayInformation());
|
||||
xml.append(forwardedPacket.toXML(null));
|
||||
xml.append(forwardedPacket.toXML(NAMESPACE));
|
||||
xml.closeElement(this);
|
||||
return xml;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue