-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make SocketsHttpHandler's content encoding comparison case-insensitive #98475
Conversation
Tagging subscribers to this area: @dotnet/ncl Issue DetailsFixes #98236
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
However, it does not make the comparisons case insensitive, right?
e.g. It just handles another variant we did not before but I'm not sure if that covers spirit of the RFC.
(and does not address the |
It does. Are you looking at the test file maybe? |
It does, it's now using StringComparison.OrdinalIgnoreCase. |
yes. actually I did. never mind. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Fixes #98236