fix event error

This commit is contained in:
Jelle van Snik 2023-01-08 20:27:03 +01:00
parent f9f46cde0b
commit cc7c09d199
1 changed files with 3 additions and 5 deletions

View File

@ -59,11 +59,9 @@ async function handleRequest(oRequest, destination, iteration = 0) {
) { ) {
// Server tried to redirect too many times // Server tried to redirect too many times
if (iteration > 5) { if (iteration > 5) {
return event.respondWith( return new Response('418 Too many redirects', {
new Response('418 Too many redirects', { status: 418,
status: 418, });
}),
);
} }
// Handle and return the request for the redirected destination // Handle and return the request for the redirected destination