diff --git a/lib/route.js b/lib/route.js index 7a22f55..2a17763 100644 --- a/lib/route.js +++ b/lib/route.js @@ -110,7 +110,7 @@ Route.prototype.dispatch = function dispatch (req, res, done) { ? req.method.toLowerCase() : req.method - if (method === 'head' && !this.methods['head']) { + if (method === 'head' && !this.methods.head) { method = 'get' }