Skip to content

Commit

Permalink
MicroHTTPKit: CORS Method is OPTIONS not POST
Browse files Browse the repository at this point in the history
  • Loading branch information
hmelder committed Mar 4, 2024
1 parent db9b2f1 commit 5083d85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Libraries/MicroHTTPKit/Source/HKRouter.m
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ - (void)registerRoute:(HKRoute *)route withCORSHandler:(HKHandlerBlock)handler {
HKRoute *corsRoute;

path = [route path];
corsRoute = [HKRoute routeWithPath:path method:HKHTTPMethodPOST handler:handler];
corsRoute = [HKRoute routeWithPath:path method:HKHTTPMethodOptions handler:handler];

[_routes addObject:route];
[_routes addObject:corsRoute];
Expand Down

0 comments on commit 5083d85

Please sign in to comment.