We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2218251 commit 547bbf8Copy full SHA for 547bbf8
V2rayNG/app/src/main/kotlin/com/v2ray/ang/fmt/ShadowsocksFmt.kt
@@ -45,7 +45,7 @@ object ShadowsocksFmt : FmtBase() {
45
fun toUri(config: ProfileItem): String {
46
val pw = "${config.method}:${config.password}"
47
48
- return toUri(config, pw, null)
+ return toUri(config, Utils.encode(pw), null)
49
}
50
51
fun toOutbound(profileItem: ProfileItem): OutboundBean? {
V2rayNG/app/src/main/kotlin/com/v2ray/ang/fmt/SocksFmt.kt
@@ -38,7 +38,7 @@ object SocksFmt : FmtBase() {
38
else
39
":"
40
41
42
43
44
0 commit comments