Merge pull request #3058 from chengzhichao-xydt/codex/webfetch-allowed-host-type-assert

fix(webfetch): add ok check for type assertion in isAllowedFirstHopHost
This commit is contained in:
Mauro
2026-06-08 18:51:42 +02:00
committed by GitHub
+2 -2
View File
@@ -2419,8 +2419,8 @@ func allowConfiguredProxyFirstHop(req *http.Request, rt http.RoundTripper) {
}
func isAllowedFirstHopHost(ctx context.Context, host string) bool {
allowed, _ := ctx.Value(webFetchAllowedFirstHopHostKey{}).(string)
if allowed == "" {
allowed, ok := ctx.Value(webFetchAllowedFirstHopHostKey{}).(string)
if !ok || allowed == "" {
return false
}
return allowed == normalizeAllowedFirstHopHost(host)