diff --git a/src/main/java/org/dynmap/web/HttpServerConnection.java b/src/main/java/org/dynmap/web/HttpServerConnection.java index 6d701d0c..847227ac 100644 --- a/src/main/java/org/dynmap/web/HttpServerConnection.java +++ b/src/main/java/org/dynmap/web/HttpServerConnection.java @@ -1,6 +1,5 @@ package org.dynmap.web; -import java.io.BufferedOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; @@ -163,6 +162,10 @@ public class HttpServerConnection extends Thread { return; } + if (bound > 0) { + boundBody.skip(bound); + } + HttpResponse response = new HttpResponse(this, out); try {