Skip to content

Commit

Permalink
Fix Native proxy on windows for Boot eclipse extension
Browse files Browse the repository at this point in the history
  • Loading branch information
BoykoAlex committed Nov 2, 2023
1 parent 10cb1ef commit c30c2a6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ private Map<String, Object> createHttpProxySettings() {
ProxyManager proxyManager = (ProxyManager) proxyService;
if (proxyService.isSystemProxiesEnabled() && proxyManager.hasSystemProxies()) {
for (IProxyData data : proxyManager.getNativeProxyData()) {
if (data.getHost() != null) {
if (data.getHost() != null && !data.getHost().isBlank()) {
fillProxyData(proxy, data, proxyManager.getNativeNonProxiedHosts());
break;
}
Expand Down

0 comments on commit c30c2a6

Please sign in to comment.