Fix preflight middleware ordering and bump version

This commit is contained in:
2022-03-29 15:12:51 -05:00
parent 1288e51de0
commit 6ee3e2a729
2 changed files with 2 additions and 2 deletions

View File

@@ -362,7 +362,7 @@ export class Route<TReturn extends ResponseObject, THandlerParams extends unknow
}
public pre(middleware: Instantiable<Middleware>): this {
this.preflight.push(request => request.make<Middleware>(middleware, request).apply())
this.preflight.prepend(request => request.make<Middleware>(middleware, request).apply())
this.displays.push({
stage: 'pre',
display: `${middleware.name}`,