diff options
author | Moonchild <moonchild@palemoon.org> | 2021-07-09 21:18:36 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2021-07-10 13:00:14 +0000 |
commit | 5e6305573f0202ab75ce8ec18ae8ebce2d0d97f8 (patch) | |
tree | f67ca3885146aac99ec4916c142d3b4d7c702eae /modules/libpref | |
parent | 3163b3af18d8b8ffa7b8294f61602b0f0f27da2f (diff) | |
download | uxp-5e6305573f0202ab75ce8ec18ae8ebce2d0d97f8.tar.gz |
[network] Stop treating http and https as different for encoding schemes.
There is no reason to treat available encoding schemes for these protocols
differently.
Diffstat (limited to 'modules/libpref')
-rw-r--r-- | modules/libpref/init/all.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index 79e393efe0..b16e58d714 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -1463,9 +1463,7 @@ pref("network.http.redirection-limit", 20); // Enable http compression: comment this out in case of problems with 1.1 // NOTE: support for "compress" has been disabled per bug 196406. // NOTE: separate values with comma+space (", "): see bug 576033 -// NOTE: there is currently no reason except evangelism for https to not use brotli for http pref("network.http.accept-encoding", "gzip, deflate, br"); -pref("network.http.accept-encoding.secure", "gzip, deflate, br"); pref("network.http.pipelining" , true); pref("network.http.pipelining.ssl" , false); // disable pipelining over SSL |