summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/com/isode/stroke/client/ClientSession.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/isode/stroke/client/ClientSession.java b/src/com/isode/stroke/client/ClientSession.java
index b0afb7b..a00ed67 100644
--- a/src/com/isode/stroke/client/ClientSession.java
+++ b/src/com/isode/stroke/client/ClientSession.java
@@ -306,7 +306,7 @@ public class ClientSession {
else if (UseTLS.RequireTLS.equals(useTLS) && !stream.isTLSEncrypted()) {
finishSession(Error.Type.NoSupportedAuthMechanismsError);
}
- else if (false && useStreamCompression && streamFeatures.hasCompressionMethod("zlib")) { /*FIXME: test and enable!*/
+ else if (useStreamCompression && streamFeatures.hasCompressionMethod("zlib")) {
state = State.Compressing;
stream.writeElement(new CompressRequest("zlib"));
}