@@ -75,9 +75,6 @@ function read (req, res, next, parse, debug, options) {
75
75
debug ( 'read body' )
76
76
getBody ( stream , opts , function ( err , body ) {
77
77
if ( err ) {
78
- // default to 400
79
- setErrorStatus ( err , 400 )
80
-
81
78
// echo back charset
82
79
if ( err . type === 'encoding.unsupported' ) {
83
80
err = createError ( 415 , 'unsupported charset "' + encoding . toUpperCase ( ) + '"' , {
@@ -88,7 +85,7 @@ function read (req, res, next, parse, debug, options) {
88
85
// read off entire request
89
86
stream . resume ( )
90
87
onFinished ( req , function onfinished ( ) {
91
- next ( err )
88
+ next ( createError ( 400 , err ) )
92
89
} )
93
90
return
94
91
}
@@ -99,9 +96,7 @@ function read (req, res, next, parse, debug, options) {
99
96
debug ( 'verify body' )
100
97
verify ( req , res , body , encoding )
101
98
} catch ( err ) {
102
- // default to 403
103
- setErrorStatus ( err , 403 )
104
- next ( err )
99
+ next ( createError ( 403 , err ) )
105
100
return
106
101
}
107
102
}
@@ -120,10 +115,7 @@ function read (req, res, next, parse, debug, options) {
120
115
? body
121
116
: str
122
117
123
- // default to 400
124
- setErrorStatus ( err , 400 )
125
-
126
- next ( err )
118
+ next ( createError ( 400 , err ) )
127
119
return
128
120
}
129
121
@@ -175,15 +167,3 @@ function contentstream (req, debug, inflate) {
175
167
176
168
return stream
177
169
}
178
-
179
- /**
180
- * Set a status on an error object, if one does not exist
181
- * @private
182
- */
183
-
184
- function setErrorStatus ( error , status ) {
185
- if ( ! error . status && ! error . statusCode ) {
186
- error . status = status
187
- error . statusCode = status
188
- }
189
- }
0 commit comments