[bug] Disable response decoding while proxying; Fix bug 76719

This commit is contained in:
Sergey Konovalov
2025-09-17 17:23:35 +03:00
parent ea5546b962
commit 7a5b5fc2b8
2 changed files with 7 additions and 2 deletions

View File

@ -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