Commit dfd1818c authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Fixed double byte char fix to accept \t heart beats.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@9898 b35dd754-fafc-0310-a699-88a17e54d16e
parent c0864e93
......@@ -156,7 +156,6 @@ class XMLLightweightParser {
// Verify if the last received byte is an incomplete double byte character
char lastChar = buf[readByte-1];
//if (Character.isISOControl(lastChar) || lastChar >= 0xfff0) {
if (lastChar >= 0xfff0) {
if (Log.isDebugEnabled()) {
Log.debug("Waiting to get complete char: " + String.valueOf(buf));
......
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