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

Commit

Permalink
Update src/HttpClientRequestAdapter.cs
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Omondi <[email protected]>
  • Loading branch information
kasperk81 and andrueastman authored May 27, 2024
1 parent acdf0d9 commit dea20d9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/HttpClientRequestAdapter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,8 @@ private async Task<HttpResponseMessage> RetryCAEResponseIfRequired(HttpResponseM

if(authHeader is not null)
{
var authHeaderParameters = authHeader.Parameter?.Split([','], StringSplitOptions.RemoveEmptyEntries);
var authHeaderParameters = authHeader.Parameter?.Split(new[]{','}, StringSplitOptions.RemoveEmptyEntries);

string? rawResponseClaims = null;
if(authHeaderParameters != null)
{
Expand Down

0 comments on commit dea20d9

Please sign in to comment.