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 2e7af80 commit 89e7563Copy full SHA for 89e7563
1 file changed
app/src/processing/app/Preferences.java
@@ -154,6 +154,13 @@ static public void init() {
154
System.setProperty("http.proxyHost", proxyHost);
155
System.setProperty("http.proxyPort", proxyPort);
156
}
157
+ String socksProxyHost = get("socksProxy.host");
158
+ String socksProxyPort = get("socksProxy.port");
159
+ if (socksProxyHost != null && socksProxyHost.length() != 0 && socksProxyPort != null
160
+ && socksProxyPort.length() != 0) {
161
+ System.setProperty("socksProxyHost", socksProxyHost);
162
+ System.setProperty("socksProxyPort", socksProxyPort);
163
+ }
164
165
166
0 commit comments