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 8623b6f commit 8fa30c2Copy full SHA for 8fa30c2
src/stdHTTP.cls
@@ -540,7 +540,8 @@ End Function
540
Private Sub LoadAutoProxy(ByVal sURL as string, ByVal oProxy as Object)
541
Dim info As ProxyInfoEx: info = GetProxyCurrentUser(sURL)
542
If Not info.Error.isSet Then
543
- oProxy("hasProxy") = true
+ 'FIX: Sometimes proxy server is empty without the error being set. Ignore these proxys.
544
+ oProxy("hasProxy") = (info.ProxyServer <> "")
545
oProxy("server") = info.ProxyServer
546
oProxy("bypass") = info.ProxyBypass
547
oProxy("user") = Empty 'TODO: Check if user/pass credentials with auto-proxy will ever be needed
0 commit comments