From 1ff0a9784dc716425f3382838597094ef17dab46 Mon Sep 17 00:00:00 2001 From: Ryan Cartwright Date: Fri, 15 Aug 2025 11:43:33 +1000 Subject: [PATCH] lowercase headers fix --- src/context/http.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context/http.ts b/src/context/http.ts index 7a68b3d..89ebf34 100644 --- a/src/context/http.ts +++ b/src/context/http.ts @@ -105,7 +105,7 @@ export class HttpContext extends BaseContext { ).reduce( (acc, [key, [val]]) => ({ ...acc, - [key.toLowerCase()]: val.length === 1 ? val[0] : val, + [key]: val.length === 1 ? val[0] : val, }), {} );