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; }