diff --git a/lib/application.js b/lib/application.js index bf28587..d511ff5 100644 --- a/lib/application.js +++ b/lib/application.js @@ -88,10 +88,10 @@ app.callback = function(){ var gen = compose(mw); var self = this; - return function(req, res){ + return function(req, res, next){ var ctx = new Context(self, req, res); - co.call(ctx, gen)(ctx.onerror); + co.call(ctx, gen)(next || ctx.onerror); } };