summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--http.ts13
1 files changed, 6 insertions, 7 deletions
diff --git a/http.ts b/http.ts
index 2dab9e1e5..e709dd4a3 100644
--- a/http.ts
+++ b/http.ts
@@ -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());
}
}