This commit is contained in:
Meghan Denny
2025-10-30 20:28:48 -07:00
parent 9e35139d48
commit 24b53d4761

View File

@@ -285,7 +285,7 @@ namespace uWS
te.has = lastTokenLen > 0;
// Check if the last token is "chunked"
if (lastTokenLen == 7 && !WTF::equalIgnoringASCIICase<char, char>({ value.data() + lastTokenStart, 7 }, { "chunked", 7 })) [[likely]] {
if (lastTokenLen == 7 && WTF::equalIgnoringASCIICase<char, char>({ value.data() + lastTokenStart, 7 }, { "chunked", 7 })) [[likely]] {
te.chunked = true;
}