win_get_url - Fix proxy_url not used correctly

pull/58738/head
ShachafGoldstein 7 years ago
parent 2f91266aa9
commit a21d40474c

@ -0,0 +1,2 @@
bugfixes:
- "win_get_url - Fix proxy_url not used correctly (https://github.com/ansible/ansible/issues/58691)"

@ -108,7 +108,7 @@ Function Invoke-AnsibleWebRequest {
if (-not $UseProxy) {
$web_request.Proxy = $null
} elseif ($ProxyUri) {
} elseif ($Proxy) {
$web_request.Proxy = $Proxy
}

Loading…
Cancel
Save