mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-02 16:53:11 +00:00
Fixed WebRequest init (#40641)
This commit is contained in:
committed by
Jordan Borean
parent
d04a989bd2
commit
4fbdc1a497
@@ -62,9 +62,9 @@ Function CheckModified-File($url, $dest, $headers, $credentials, $timeout, $use_
|
||||
|
||||
if ($credentials) {
|
||||
if ($force_basic_auth) {
|
||||
$extWebClient.Headers.Add("Authorization","Basic $credentials")
|
||||
$webRequest.Headers.Add("Authorization", "Basic $credentials")
|
||||
} else {
|
||||
$extWebClient.Credentials = $credentials
|
||||
$webRequest.Credentials = $credentials
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user