Skip to content

Commit

Permalink
Fix shadow endpoint when ending with slash (#3740)
Browse files Browse the repository at this point in the history
  • Loading branch information
PH4NTOMiki authored Feb 8, 2022
1 parent e49fe5b commit 4d5089b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/mighty-cycles-double.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@sveltejs/kit': patch
---

fixes an error with fetching shadow endpoints if they are ending with '/'
11 changes: 7 additions & 4 deletions packages/kit/src/runtime/client/renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -753,11 +753,14 @@ export class Renderer {
let props = {};

if (has_shadow && i === a.length - 1) {
const res = await fetch(`${url.pathname}/__data.json`, {
headers: {
'x-sveltekit-noredirect': 'true'
const res = await fetch(
`${url.pathname}${url.pathname.endsWith('/') ? '' : '/'}__data.json`,
{
headers: {
'x-sveltekit-noredirect': 'true'
}
}
});
);

if (res.ok) {
const redirect = res.headers.get('x-sveltekit-location');
Expand Down

0 comments on commit 4d5089b

Please sign in to comment.