mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
[ci] format
This commit is contained in:
parent
9deb919ff9
commit
9076dc821c
3 changed files with 3 additions and 4 deletions
|
@ -106,8 +106,8 @@ export class RenderContext {
|
|||
// Signal to the i18n middleware to maybe act on this response
|
||||
response.headers.set(ROUTE_TYPE_HEADER, 'page');
|
||||
// Signal to the error-page-rerouting infra to let this response pass through to avoid loops
|
||||
if (routeData.route === "/404" || routeData.route === "/500") {
|
||||
response.headers.set(REROUTE_DIRECTIVE_HEADER, "no")
|
||||
if (routeData.route === '/404' || routeData.route === '/500') {
|
||||
response.headers.set(REROUTE_DIRECTIVE_HEADER, 'no');
|
||||
}
|
||||
return response;
|
||||
}
|
||||
|
|
|
@ -198,7 +198,7 @@ export function createI18nMiddleware(
|
|||
* To avoid loops and overwriting the contents of `404.astro`, we allow error pages to pass through.
|
||||
*/
|
||||
function notFound(response: Response) {
|
||||
if (response.headers.get(REROUTE_DIRECTIVE_HEADER) === "no") return response;
|
||||
if (response.headers.get(REROUTE_DIRECTIVE_HEADER) === 'no') return response;
|
||||
return new Response(null, {
|
||||
status: 404,
|
||||
headers: response.headers,
|
||||
|
|
|
@ -1346,7 +1346,6 @@ describe('[SSR] i18n routing', () => {
|
|||
assert.equal((await response.text()).includes('I am index'), true);
|
||||
});
|
||||
|
||||
|
||||
it('can render the 404.astro route on unmatched requests', async () => {
|
||||
const request = new Request('http://example.com/xyz');
|
||||
const response = await app.render(request);
|
||||
|
|
Loading…
Add table
Reference in a new issue