Skip to content

Commit

Permalink
Update src/Microsoft.PowerShell.Commands.Utility/commands/utility/Web…
Browse files Browse the repository at this point in the history
…Cmdlet/Common/WebRequestPSCmdlet.Common.cs

Co-authored-by: CarloToso <105941898+CarloToso@users.noreply.github.com>
  • Loading branch information
mkht and CarloToso committed May 11, 2023
1 parent 837c462 commit ba5d55b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1375,7 +1375,7 @@ internal virtual HttpResponseMessage GetResponse(HttpClient client, HttpRequestM
IEnumerator<string> enumerator = retryAfter.GetEnumerator();
if (enumerator.MoveNext())
{
retryIntervalInSeconds = (double)Convert.ToInt32(enumerator.Current);
retryIntervalInSeconds = Convert.ToInt32(enumerator.Current);
}
}
catch
Expand Down

0 comments on commit ba5d55b

Please sign in to comment.