Re-added flushing again (oops).

This commit is contained in:
FrozenCow 2011-02-13 23:22:57 +01:00
parent a81665d38d
commit b63369675d

View File

@ -79,5 +79,6 @@ public class ClientUpdateHandler implements HttpHandler {
response.fields.put("Content-Length", Integer.toString(bytes.length));
BufferedOutputStream out = new BufferedOutputStream(response.getBody());
out.write(bytes);
out.flush();
}
}