We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b32de41 commit 690cf2cCopy full SHA for 690cf2c
src/core/SIP/SIPHeader.cs
@@ -856,7 +856,7 @@ public static SIPAuthenticationHeader ParseSIPAuthenticationHeader(SIPAuthorisat
856
{
857
Value = headerValue
858
};
859
- if (headerValue.StartsWith(SIPAuthorisationDigest.METHOD))
+ if (headerValue.StartsWith(SIPAuthorisationDigest.METHOD, StringComparison.OrdinalIgnoreCase))
860
861
authHeader.SIPDigest = SIPAuthorisationDigest.ParseAuthorisationDigest(authorizationType, headerValue);
862
}
0 commit comments