Update content-length calculation to use buffer

This commit is contained in:
2022-03-30 23:59:34 -05:00
parent bea48602f5
commit a779ec1d09
2 changed files with 2 additions and 2 deletions

View File

@@ -243,7 +243,7 @@ export class Response {
await this.sending$.next(this)
if ( !(this.body instanceof Readable) ) {
this.setHeader('Content-Length', String((this.body?.length ?? 0) + 2))
this.setHeader('Content-Length', String(Buffer.from(this.body ?? '').length))
}
this.setHeader('Date', (new Date()).toUTCString())