1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-30 16:40:57 -05:00

set content-length for bodyless response

This commit is contained in:
Bartek Iwańczuk 2018-12-09 18:44:13 +01:00 committed by Ryan Dahl
parent 958dadc875
commit 0e82a4249e

13
http.ts
View file

@ -89,13 +89,12 @@ interface Response {
}
function setContentLength(r: Response): void {
if (r.body) {
if (!r.headers) {
r.headers = new Headers();
}
if (!r.headers.has("content-length")) {
r.headers.append("Content-Length", r.body.byteLength.toString());
}
if (!r.headers) {
r.headers = new Headers();
}
if (!r.headers.has("content-length")) {
const bodyLength = r.body ? r.body.byteLength : 0
r.headers.append("Content-Length", bodyLength.toString());
}
}