mirror of
https://github.com/ONLYOFFICE/server.git
synced 2026-04-07 14:04:35 +08:00
[bug] Disable response decoding while proxying; Fix bug 76719
This commit is contained in:
@ -300,7 +300,10 @@ async function proxyRequest(req, res) {
|
||||
requestParams.body, // Request body
|
||||
requestParams.timeout, // Timeout configuration
|
||||
requestParams.limit, // Size limit
|
||||
requestParams.isInJwtToken // Filter private requests
|
||||
requestParams.isInJwtToken, // Filter private requests
|
||||
{
|
||||
decompress: false
|
||||
}
|
||||
);
|
||||
|
||||
// Set the response headers to match the target response
|
||||
|
||||
Reference in New Issue
Block a user