Commit 42094332 authored by Guus der Kinderen's avatar Guus der Kinderen

Merge pull request #318 from guusdk/3.10_OF-918

OF-918: BOSH should use UTF-8 character set.
parents 148cd51a 975af740
......@@ -414,7 +414,7 @@ public class HttpBindServlet extends HttpServlet {
byte b[] = new byte[1024];
int length;
while (inputStream.isReady() && (length = inputStream.read(b)) != -1) {
buffer.append(new String(b, 0, length));
buffer.append(new String(b, 0, length, "UTF-8"));
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment