Remove extraneous increment in charset sniffing code

Related commit:
7c3e060c01

Related feedback:
7c3e060c01 (commitcomment-131759551)
This commit is contained in:
Raymond Hill 2023-11-05 14:19:06 -05:00
parent 737799e43d
commit ce835bb300
No known key found for this signature in database
GPG key ID: 25E1490B761470C2

View file

@ -762,7 +762,6 @@ const bodyFilterer = (( ) => {
const c = bytes[i+j];
if ( c >= 0x41 && c <= 0x5A ) { break; }
if ( c >= 0x61 && c <= 0x7A ) { break; }
j += 1;
}
if ( j === 8 ) { return; }
i += j;