We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d52515 commit 2e21575Copy full SHA for 2e21575
WebKitDev/Functions/Invoke-WebFileRequest.ps1
@@ -32,7 +32,7 @@ function Invoke-WebFileRequest {
32
# Setup a proxy if needed
33
$proxy = [System.Net.WebProxy]::GetDefaultProxy();
34
35
- if ($null -ne $proxy.Address) {
+ if ($null -eq $proxy.Address) {
36
if ($secure) {
37
if (Test-Path env:HTTPS_PROXY) {
38
$proxy = New-Object System.Net.WebProxy ($env:HTTPS_PROXY,$true);
0 commit comments