From 7d6ccebef779be3948edeff8961e59194bd4478d Mon Sep 17 00:00:00 2001 From: gVisor bot 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), ":")