Correctly serizlize error sub-packet.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2015 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Matt Tucker 2003-08-05 19:39:16 +00:00 committed by mtucker
parent d7d534702a
commit 3168514591
1 changed files with 1 additions and 1 deletions

View File

@ -106,12 +106,12 @@ public abstract class IQ extends Packet {
if (queryXML != null) {
buf.append(queryXML);
}
buf.append("</iq>");
// Add the error sub-packet, if there is one.
XMPPError error = getError();
if (error != null) {
buf.append(error.toXML());
}
buf.append("</iq>");
return buf.toString();
}