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
commit 13bf650807
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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)