fix: wrong conditional judgment in removeExtraHTTPHostPort

https://github.com/MetaCubeX/mihomo/issues/1939
This commit is contained in:
wwqgtxx 2025-03-28 10:54:11 +08:00
parent f61534602b
commit 025ff19fab

View file

@ -47,7 +47,7 @@ func removeExtraHTTPHostPort(req *http.Request) {
host = req.URL.Host
}
if pHost, port, err := net.SplitHostPort(host); err == nil && (port == "80" || port == "443") {
if pHost, port, err := net.SplitHostPort(host); err == nil && port == "80" {
host = pHost
if ip, err := netip.ParseAddr(pHost); err == nil && ip.Is6() {
// RFC 2617 Sec 3.2.2, for IPv6 literal