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

[ci] format

This commit is contained in:
Arsh 2024-03-04 14:56:42 +00:00 committed by astrobot-houston
parent 9deb919ff9
commit 9076dc821c
3 changed files with 3 additions and 4 deletions

View file

@ -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;
}

View file

@ -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,

View file

@ -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);