-
Notifications
You must be signed in to change notification settings - Fork 910
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(GH-1141) Fix: Constant Proxy Null Reference Error
In some environments, (new-object System.Net.WebClient).Proxy -eq $null is true, as is [System.Net.WebRequest]::DefaultWebProxy -eq $null. This means the IsBypassed() method was being called on a null object. This checks the object's existence before using that method.
- Loading branch information
1 parent
c873be5
commit eb39536
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters