Skip to content

Commit

Permalink
Un-break http3 examples
Browse files Browse the repository at this point in the history
  • Loading branch information
uNetworkingAB committed Dec 23, 2023
1 parent 03c2997 commit 71ec3d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http3Context.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ namespace uWS {
/* Todo: This is ugly, fix */
std::vector<std::string> methods;
if (method == "*") {
methods = contextData->router.upperCasedMethods; //bug! needs to be upper cased!
methods = {"*"}; //bug! needs to be upper cased!
// router.upperCasedMethods;
} else {
methods = {method};
Expand Down

0 comments on commit 71ec3d3

Please sign in to comment.