Re-added flushing again (oops).

This commit is contained in:
FrozenCow 2011-02-13 23:22:57 +01:00
parent e4ecb706e1
commit 1a58a4e879

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();
}
}