1

use fetch

This commit is contained in:
Evan Pratten 2024-01-16 11:23:57 -05:00
parent c0b8f76661
commit 4a35586882

View File

@ -13,8 +13,8 @@ async function handle_keys_request(context) {
url.pathname = '/keys' + url.pathname; url.pathname = '/keys' + url.pathname;
} }
// Redirect // Transparent redirect
return Response.redirect(url, 302); return fetch(url);
} }
// Otherwise, continue the request chain // Otherwise, continue the request chain