File tree 2 files changed +9
-8
lines changed
packages/start/src/middleware
2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @solidjs/start " : patch
3
+ ---
4
+
5
+ Await internal ` sendWebResponse ` calls for middlewares that return responses.
Original file line number Diff line number Diff line change @@ -27,10 +27,8 @@ function wrapRequestMiddleware(onRequest: RequestMiddleware) {
27
27
return async ( h3Event : HTTPEvent ) => {
28
28
const fetchEvent = getFetchEvent ( h3Event ) ;
29
29
const response = await onRequest ( fetchEvent ) ;
30
- if ( ! response ) {
31
- return ;
32
- } else {
33
- sendWebResponse ( h3Event , response ) ;
30
+ if ( response ) {
31
+ await sendWebResponse ( h3Event , response ) ;
34
32
}
35
33
} ;
36
34
}
@@ -39,10 +37,8 @@ function wrapResponseMiddleware(onBeforeResponse: ResponseMiddleware) {
39
37
return async ( h3Event : HTTPEvent , response : ResponseMiddlewareResponseParam ) => {
40
38
const fetchEvent = getFetchEvent ( h3Event ) ;
41
39
const mwResponse = await onBeforeResponse ( fetchEvent , response ) ;
42
- if ( ! mwResponse ) {
43
- return ;
44
- } else {
45
- sendWebResponse ( h3Event , mwResponse ) ;
40
+ if ( mwResponse ) {
41
+ await sendWebResponse ( h3Event , mwResponse ) ;
46
42
}
47
43
} ;
48
44
}
You can’t perform that action at this time.
0 commit comments