Proxy Auto-Configuration (PAC) file should not be compressed (#916)
This commit is contained in:
parent
8e3d724cd6
commit
ea66280827
|
@ -90,7 +90,7 @@ def okResponse(
|
||||||
**kwargs: Any,
|
**kwargs: Any,
|
||||||
) -> memoryview:
|
) -> memoryview:
|
||||||
do_compress: bool = False
|
do_compress: bool = False
|
||||||
if compress and flags.args and content and len(content) > flags.args.min_compression_limit:
|
if flags.args and compress and content and len(content) > flags.args.min_compression_limit:
|
||||||
do_compress = True
|
do_compress = True
|
||||||
if not headers:
|
if not headers:
|
||||||
headers = {}
|
headers = {}
|
||||||
|
|
|
@ -80,7 +80,7 @@ class HttpWebServerPacFilePlugin(HttpWebServerBasePlugin):
|
||||||
content=content,
|
content=content,
|
||||||
headers={
|
headers={
|
||||||
b'Content-Type': b'application/x-ns-proxy-autoconfig',
|
b'Content-Type': b'application/x-ns-proxy-autoconfig',
|
||||||
b'Content-Encoding': b'gzip',
|
|
||||||
},
|
},
|
||||||
conn_close=True,
|
conn_close=True,
|
||||||
|
compress=False,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue