From 6b031249acfe749c85655fc26451f01aef254c83 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Wed, 8 Nov 2017 02:18:33 -0500 Subject: [PATCH] Fix HTTP breakage in bb1cbdff269 --- chrome/content/zotero/xpcom/http.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/chrome/content/zotero/xpcom/http.js b/chrome/content/zotero/xpcom/http.js index f73cd10b1..e6ce06dda 100644 --- a/chrome/content/zotero/xpcom/http.js +++ b/chrome/content/zotero/xpcom/http.js @@ -1012,10 +1012,6 @@ Zotero.HTTP = new function() { // Download complete case 4: if (callback) { - // Override the content charset - if (responseCharset) { - xmlhttp.channel.contentCharset = responseCharset; - } callback(xmlhttp, data); } break;