fix(api): 🐛 Actually use x-forwarded-proto support code

This commit is contained in:
Jesse Wierzbinski 2025-12-11 01:39:03 +01:00
parent 8ec1c6d027
commit 3f8fa14ff9
No known key found for this signature in database

View file

@ -50,7 +50,7 @@ export const createServer = (
} }
} }
const output = await app.fetch(req, { ip }); const output = await app.fetch(new Request(url, req), { ip });
await debugResponse(output.clone()); await debugResponse(output.clone());