1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-11-22 06:12:05 +01:00

Merge pull request #398 from vanitasvitae/configureformfix

Add missing rightangle bracket to FormNode addXml()
This commit is contained in:
Florian Schmaus 2020-06-15 17:49:42 +02:00 committed by GitHub
commit 8cf6f756ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,6 +77,7 @@ public class FormNode extends NodeExtension {
return; return;
} }
xml.rightAngleBracket();
xml.append(configForm); xml.append(configForm);
xml.closeElement(this); xml.closeElement(this);
} }