fix: OPTIONS should not attempt to return a body

This commit is contained in:
dangered wolf 2024-04-23 06:48:02 -04:00
parent 92410f8f4c
commit d780fa5055
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -91,8 +91,7 @@ export const cacheMiddleware = (): MiddlewareHandler => async (c, next) => {
case 'OPTIONS': case 'OPTIONS':
c.header('allow', Constants.RESPONSE_HEADERS.allow); c.header('allow', Constants.RESPONSE_HEADERS.allow);
c.status(204); c.status(204);
if (returnAsJson) return c.json(''); return;
return c.html('');
default: default:
c.status(405); c.status(405);
if (returnAsJson) return c.json(''); if (returnAsJson) return c.json('');