修复系统代理 JVM 参数格式 (#5265)

Co-authored-by: xirren <xirren@outlook.com>
This commit is contained in:
Xirren
2026-01-20 21:57:25 +08:00
committed by GitHub
parent 38612e5d6c
commit 0a0476b6d3

View File

@@ -172,7 +172,7 @@ public class DefaultLauncher extends Launcher {
Proxy.Type proxyType = options.getProxyType();
if (proxyType == null) {
res.addDefault("-Djava.net.useSystemProxies", "true");
res.addDefault("-Djava.net.useSystemProxies=", "true");
} else {
String proxyHost = options.getProxyHost();
int proxyPort = options.getProxyPort();