Skip to content

Commit df32b0d

Browse files
edivadosryansolidatilafassinakatywings
authored
fix: add await to middleware response handling (#1588)
* fix middleware wrapper * revert wrapResponseMiddleware to use sendWebResponse * Create heavy-panthers-confess.md --------- Co-authored-by: Ryan Carniato <[email protected]> Co-authored-by: Atila Fassina <[email protected]> Co-authored-by: Katja Lutz <[email protected]>
1 parent d260b55 commit df32b0d

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.changeset/heavy-panthers-confess.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@solidjs/start": patch
3+
---
4+
5+
Await internal `sendWebResponse` calls for middlewares that return responses.

packages/start/src/middleware/index.tsx

+4-8
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,8 @@ function wrapRequestMiddleware(onRequest: RequestMiddleware) {
2727
return async (h3Event: HTTPEvent) => {
2828
const fetchEvent = getFetchEvent(h3Event);
2929
const response = await onRequest(fetchEvent);
30-
if (!response) {
31-
return;
32-
} else {
33-
sendWebResponse(h3Event, response);
30+
if (response) {
31+
await sendWebResponse(h3Event, response);
3432
}
3533
};
3634
}
@@ -39,10 +37,8 @@ function wrapResponseMiddleware(onBeforeResponse: ResponseMiddleware) {
3937
return async (h3Event: HTTPEvent, response: ResponseMiddlewareResponseParam) => {
4038
const fetchEvent = getFetchEvent(h3Event);
4139
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);
4642
}
4743
};
4844
}

0 commit comments

Comments
 (0)