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:
parent
fcc2fd5b0f
commit
c01580a2cd
2 changed files with 8 additions and 2 deletions
5
.changeset/selfish-parents-leave.md
Normal file
5
.changeset/selfish-parents-leave.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Improves the error message when a middleware doesn't return a `Response`
|
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue