CE-564 - Adding support for override warehouse and carrier service.

This commit is contained in:
t-samples
2023-08-03 11:33:45 -05:00
parent 53c005051e
commit be30422c18

View File

@ -69,7 +69,8 @@ public class QHttpResponse
this.statusProtocolVersion = httpResponse.getStatusLine().getProtocolVersion().toString();
}
}
if(httpResponse.getEntity() != null)
if(this.statusCode == null || this.statusCode != 204)
{
this.content = EntityUtils.toString(httpResponse.getEntity());
}