1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-04-06 06:32:06 +02:00

Change append to optAppend for headers and data to avoid NullPointerException

This commit is contained in:
Tibo-lg 2015-06-22 11:25:08 +02:00 committed by Florian Schmaus
parent f24ef7dda9
commit e20c17050e

View file

@ -42,8 +42,8 @@ public abstract class AbstractHttpOverXmpp extends IQ {
protected IQChildElementXmlStringBuilder getIQChildElementBuilder(IQChildElementXmlStringBuilder xml) {
IQChildElementXmlStringBuilder builder = getIQHoxtChildElementBuilder(xml);
builder.append(headers.toXML());
builder.append(data.toXML());
builder.optAppend(headers.toXML());
builder.optAppend(data.toXML());
return builder;
}