Skip to content

Commit ce1014f

Browse files
authoredOct 18, 2017
Merge pull request #456 from ramimoshe/master
fix exception on unknown http status codes
2 parents e4f569d + 4790de6 commit ce1014f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/responses.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ internals.responses.prototype.getResponse = function (statusCode, joiObj, useDef
153153
out = Utilities.deleteEmptyProperties(out);
154154

155155
// default description if not given
156-
if (!out.description) {
156+
if (!out.description && HTTPStatus[statusCode]) {
157157
out.description = HTTPStatus[statusCode].replace('OK', 'Successful');
158158
}
159159

0 commit comments

Comments
 (0)
Please sign in to comment.