Navigation Menu

Skip to content

Commit

Permalink
disable compression due to strange bugs. see #85
Browse files Browse the repository at this point in the history
  • Loading branch information
ge0rg committed Feb 5, 2013
1 parent 445f1bb commit a7a5f29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/yaxim/androidclient/service/SmackableImp.java
Expand Up @@ -142,7 +142,7 @@ public SmackableImp(YaximConfiguration config,
this.mXMPPConfig = new ConnectionConfiguration(mConfig.server); // use SRV
this.mXMPPConfig.setReconnectionAllowed(false);
this.mXMPPConfig.setSendPresence(false);
this.mXMPPConfig.setCompressionEnabled(true);
this.mXMPPConfig.setCompressionEnabled(false); // disable for now
this.mXMPPConfig.setDebuggerEnabled(mConfig.smackdebug);
if (config.require_ssl)
this.mXMPPConfig.setSecurityMode(ConnectionConfiguration.SecurityMode.required);
Expand Down

0 comments on commit a7a5f29

Please sign in to comment.