mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 02:20:54 +01:00
fix: OPTIONS should not attempt to return a body
This commit is contained in:
parent
92410f8f4c
commit
d780fa5055
1 changed files with 1 additions and 2 deletions
|
@ -91,8 +91,7 @@ export const cacheMiddleware = (): MiddlewareHandler => async (c, next) => {
|
|||
case 'OPTIONS':
|
||||
c.header('allow', Constants.RESPONSE_HEADERS.allow);
|
||||
c.status(204);
|
||||
if (returnAsJson) return c.json('');
|
||||
return c.html('');
|
||||
return;
|
||||
default:
|
||||
c.status(405);
|
||||
if (returnAsJson) return c.json('');
|
||||
|
|
Loading…
Add table
Reference in a new issue