| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -164,7 +164,7 @@ func proxyChromiumArguments(settings backendSettings) []string { | |||
| 164 | 164 | bypass = strings.NewReplacer(",", ";", " ", "").Replace(bypass) | |
| 165 | 165 | args := []string{ | |
| 166 | 166 | "--proxy-server=" + proxyURL.String(), | |
| 167 | - "--proxy-bypass-list=<-loopback>;" + bypass, | ||
| 167 | + "--proxy-bypass-list=" + bypass, | ||
| 168 | 168 | } | |
| 169 | 169 | if proxyPurposeEnabled(settings, proxyPurposeRealtime) { | |
| 170 | 170 | // Advanced Voice uses WebRTC. Without this flag Chromium may send | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -89,7 +89,7 @@ func TestAdvancedVoiceProxyUsesChromiumAndWebRTCProxyPath(t *testing.T) { | |||
| 89 | 89 | args := buildCodexArgumentsForSettings(9229, nil, settings) | |
| 90 | 90 | for _, expected := range []string{ | |
| 91 | 91 | "--proxy-server=http://127.0.0.1:10809", | |
| 92 | - "--proxy-bypass-list=<-loopback>;127.0.0.1;localhost;[::1]", | ||
| 92 | + "--proxy-bypass-list=127.0.0.1;localhost;[::1]", | ||
| 93 | 93 | "--force-webrtc-ip-handling-policy=disable_non_proxied_udp", | |
| 94 | 94 | } { | |
| 95 | 95 | if !containsString(args, expected) { | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5330,7 +5330,7 @@ function ProxyScreen({ | |||
| 5330 | 5330 | spellCheck={false} | |
| 5331 | 5331 | /> | |
| 5332 | 5332 | </Field> | |
| 5333 | - <p className="field-hint">支持 http:// 和 https://,可带认证信息。保存时不会把密码写入日志;当前只支持 HTTP 代理协议。</p> | ||
| 5333 | + <p className="field-hint">支持 http:// 和 https://,可带认证信息。保存后需要完全退出并重新启动 ChatGPT,新的代理参数才会进入高级语音和远程控制链路;不会修改系统 WinHTTP。</p> | ||
| 5334 | 5334 | <Toolbar> | |
| 5335 | 5335 | <Button onClick={() => void actions.saveSettings()}> | |
| 5336 | 5336 | <Save className="h-4 w-4" /> | |
| Back | FazBrowse Home | New Git URL |
0 commit comments