fix two crashes

This commit is contained in:
Ben Lubar
2016-03-20 15:11:32 -05:00
parent e556ae93ea
commit 3c607f2612
2 changed files with 4 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ module.exports = function(middleware) {
req = this.req,
defaultFn = function(err, str){
if (err) {
return req.next(err);
return next(err);
}
self.send(str);
@@ -96,4 +96,4 @@ module.exports = function(middleware) {
return parts.join(' ');
}
};
};