1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-09-28 19:00:00 +02:00

Modified #getChildElementXML to include possible extensions

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2263 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Gaston Dombiak 2004-03-29 21:32:41 +00:00 committed by gdombiak
parent 1c424c3449
commit e11081b60d

View file

@ -181,6 +181,8 @@ public class Registration extends IQ {
buf.append("</").append(name).append(">");
}
}
// Add packet extensions, if any are defined.
buf.append(getExtensionsXML());
buf.append("</query>");
return buf.toString();
}