We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 854f699 commit 8af3bdaCopy full SHA for 8af3bda
src/util/http_utils.js
@@ -629,7 +629,7 @@ function check_headers(req, options) {
629
630
const content_encoding = req.headers['content-encoding'] || '';
631
req.chunked_content =
632
- content_encoding.split(',').includes('aws-chunked') ||
+ content_encoding.split(',').map(encoding => encoding.trim()).includes('aws-chunked') ||
633
content_sha256_hdr === STREAMING_PAYLOAD;
634
635
const req_time =
0 commit comments