From 24b53d476127b0208a7c76ecfffdc447cbf2ca4c Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Thu, 30 Oct 2025 20:28:48 -0700 Subject: [PATCH] oopies --- packages/bun-uws/src/HttpParser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bun-uws/src/HttpParser.h b/packages/bun-uws/src/HttpParser.h index 0669b0a413..87eeb0e922 100644 --- a/packages/bun-uws/src/HttpParser.h +++ b/packages/bun-uws/src/HttpParser.h @@ -285,7 +285,7 @@ namespace uWS te.has = lastTokenLen > 0; // Check if the last token is "chunked" - if (lastTokenLen == 7 && !WTF::equalIgnoringASCIICase({ value.data() + lastTokenStart, 7 }, { "chunked", 7 })) [[likely]] { + if (lastTokenLen == 7 && WTF::equalIgnoringASCIICase({ value.data() + lastTokenStart, 7 }, { "chunked", 7 })) [[likely]] { te.chunked = true; }