commit ef71d3f72991e3b0cb3cf8d73f0b4dac71eaf332
parent adec007df06b83b537563debde054a0eb4d30587
Author: Dan Stillman <dstillman@zotero.org>
Date: Fri, 29 Apr 2016 11:57:11 -0400
Revert "Try disabling gzip compression of uploads, in case it fixes sync error"
This reverts commit adec007df06b83b537563debde054a0eb4d30587.
Doesn't seem to make a difference.
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/chrome/content/zotero/xpcom/sync.js b/chrome/content/zotero/xpcom/sync.js
@@ -1803,8 +1803,7 @@ Zotero.Sync.Server = new function () {
var compress = Zotero.Prefs.get('sync.server.compressData');
// Compress upload data
- // TEMP: Disabled in case it fixes sync error in Firefox 46
- if (false && compress) {
+ if (compress) {
// Callback when compressed data is available
var bufferUploader = function (data) {
var gzurl = url + '?gzip=1';