From 5dd691aa959ba98bbc8b1076d3088ec440acf7d3 Mon Sep 17 00:00:00 2001 From: metacubex Date: Sat, 14 Jan 2023 21:37:06 +0800 Subject: [PATCH] fix: ss converter cipher missing --- common/convert/converter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/convert/converter.go b/common/convert/converter.go index 89b4d95f..891f43bb 100644 --- a/common/convert/converter.go +++ b/common/convert/converter.go @@ -272,7 +272,7 @@ func ConvertsV2Ray(buf []byte) ([]map[string]any, error) { cipher string password string ) - + cipher = cipherRaw if password, found = urlSS.User.Password(); !found { dcBuf, _ := enc.DecodeString(cipherRaw) cipher, password, found = strings.Cut(string(dcBuf), ":")