Skip to content
This repository was archived by the owner on Jul 9, 2024. It is now read-only.

Commit dea20d9

Browse files
Update src/HttpClientRequestAdapter.cs
Co-authored-by: Andrew Omondi <andrueastman@users.noreply.github.com>
1 parent acdf0d9 commit dea20d9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/HttpClientRequestAdapter.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,8 @@ private async Task<HttpResponseMessage> RetryCAEResponseIfRequired(HttpResponseM
519519

520520
if(authHeader is not null)
521521
{
522-
var authHeaderParameters = authHeader.Parameter?.Split([','], StringSplitOptions.RemoveEmptyEntries);
522+
var authHeaderParameters = authHeader.Parameter?.Split(new[]{','}, StringSplitOptions.RemoveEmptyEntries);
523+
523524
string? rawResponseClaims = null;
524525
if(authHeaderParameters != null)
525526
{

0 commit comments

Comments
 (0)