Merge pull request #74 from koajs/req-res-next

pass an optional `next` to app.callback()
master
TJ Holowaychuk 2013-11-08 14:32:07 -08:00
commit 1536d4df29
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}
};