From 32d447ce99f24626265b55cdf4ce73f9bb8ec5c3 Mon Sep 17 00:00:00 2001 From: beck <34204218+beck-8@users.noreply.github.com> Date: Thu, 12 Jun 2025 17:10:09 +0800 Subject: [PATCH] fix: convert https (#2102) --- common/convert/converter.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/convert/converter.go b/common/convert/converter.go index cb6a3c07..85ed62be 100644 --- a/common/convert/converter.go +++ b/common/convert/converter.go @@ -560,6 +560,9 @@ func ConvertsV2Ray(buf []byte) ([]map[string]any, error) { socks["username"] = username socks["password"] = password socks["skip-cert-verify"] = true + if scheme == "https" { + socks["tls"] = true + } proxies = append(proxies, socks)