mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +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':
|
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('');
|
||||||
|
|
Loading…
Add table
Reference in a new issue