From 71ec3d34c1d653fe8addbcaff271b62e7dff300b Mon Sep 17 00:00:00 2001 From: Alex Hultman Date: Sat, 23 Dec 2023 02:26:13 +0100 Subject: [PATCH] Un-break http3 examples --- src/Http3Context.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Http3Context.h b/src/Http3Context.h index 7cb18a8..4692173 100644 --- a/src/Http3Context.h +++ b/src/Http3Context.h @@ -138,7 +138,7 @@ namespace uWS { /* Todo: This is ugly, fix */ std::vector 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};