mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
oopies
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user