From adec007df06b83b537563debde054a0eb4d30587 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 29 Apr 2016 00:38:19 -0400 Subject: [PATCH] Try disabling gzip compression of uploads, in case it fixes sync error Just to see if it fixes the "Error connecting to server" errors some people are seeing after upgrading to Firefox 46. --- chrome/content/zotero/xpcom/sync.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/sync.js b/chrome/content/zotero/xpcom/sync.js index dd9b09bdd..3c6411486 100644 --- a/chrome/content/zotero/xpcom/sync.js +++ b/chrome/content/zotero/xpcom/sync.js @@ -1803,7 +1803,8 @@ Zotero.Sync.Server = new function () { var compress = Zotero.Prefs.get('sync.server.compressData'); // Compress upload data - if (compress) { + // TEMP: Disabled in case it fixes sync error in Firefox 46 + if (false && compress) { // Callback when compressed data is available var bufferUploader = function (data) { var gzurl = url + '?gzip=1';