We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b81b7c8 commit e701f2dCopy full SHA for e701f2d
useragent/parse.go
@@ -307,5 +307,5 @@ func isdelim(b byte) bool {
307
}
308
309
func isobstext(b byte) bool {
310
- return 0x80 <= b && b <= 0xFF
+ return 0x80 <= b // && b <= 0xFF, (which, is true always for bytes)
311
0 commit comments