fix: convert https (#2102)

This commit is contained in:
beck
2025-06-12 17:10:09 +08:00
committed by GitHub
parent 617fef84ae
commit 32d447ce99

View File

@@ -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)