Standardizes instances of removeHeader to remove
This commit is contained in:
parent
e6dcc9f7b7
commit
ec477107d5
1 changed files with 3 additions and 3 deletions
|
@ -134,9 +134,9 @@ module.exports = {
|
|||
// no content
|
||||
if (null == val) {
|
||||
if (!statuses.empty[this.status]) this.status = 204;
|
||||
this.res.removeHeader('Content-Type');
|
||||
this.res.removeHeader('Content-Length');
|
||||
this.res.removeHeader('Transfer-Encoding');
|
||||
this.remove('Content-Type');
|
||||
this.remove('Content-Length');
|
||||
this.remove('Transfer-Encoding');
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue