0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

fix: improve error message when a middleware doesn't return a Response (#9434)

* fix: improve error message when a middleware doesn't return a `Response`

* Apply suggestions from code review

Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>

* fix typo

---------

Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
This commit is contained in:
Emanuele Stoppa 2023-12-15 09:22:22 +00:00 committed by GitHub
parent fcc2fd5b0f
commit c01580a2cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View file

@ -0,0 +1,5 @@
---
'astro': patch
---
Improves the error message when a middleware doesn't return a `Response`

View file

@ -733,8 +733,9 @@ export const ResponseSentError = {
*/
export const MiddlewareNoDataOrNextCalled = {
name: 'MiddlewareNoDataOrNextCalled',
title: "The middleware didn't return a response or call `next`.",
message: 'The middleware needs to either return a `Response` object or call the `next` function.',
title: "The middleware didn't return a `Response`.",
message:
'Make sure your middleware returns a `Response` object, either directly or by returning the `Response` from calling the `next` function.',
} satisfies ErrorData;
/**