mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +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 ($credentials) {
|
||||||
if ($force_basic_auth) {
|
if ($force_basic_auth) {
|
||||||
$extWebClient.Headers.Add("Authorization","Basic $credentials")
|
$webRequest.Headers.Add("Authorization", "Basic $credentials")
|
||||||
} else {
|
} else {
|
||||||
$extWebClient.Credentials = $credentials
|
$webRequest.Credentials = $credentials
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user