From 025ff19fab83988bacce8078c3e0dd9de86a53a8 Mon Sep 17 00:00:00 2001 From: wwqgtxx Date: Fri, 28 Mar 2025 10:54:11 +0800 Subject: [PATCH] fix: wrong conditional judgment in removeExtraHTTPHostPort https://github.com/MetaCubeX/mihomo/issues/1939 --- listener/http/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/listener/http/utils.go b/listener/http/utils.go index e67c0fde..e0793ff3 100644 --- a/listener/http/utils.go +++ b/listener/http/utils.go @@ -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