mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
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:
parent
d7d534702a
commit
3168514591
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue