``` if (var17 != null && var17.equalsIgnor...
# kotlin-fuel
d
Copy code
if (var17 != null && var17.equalsIgnoreCase("chunked")) {
  this.serverInput = new ChunkedInputStream(this.serverInput, this, var1);
  if (this.keepAliveConnections <= 1) {
    this.keepAliveConnections = 1;
    this.keepingAlive = false;
  } else {
    this.keepingAlive = !this.disableKeepAlive;
  }

  this.failedOnce = false;
} else ...