This commit is contained in:
arm64v8a
2022-10-13 17:18:01 +08:00
parent e2c227714c
commit adfc2e3601
6 changed files with 24 additions and 9 deletions

View File

@@ -87,7 +87,7 @@ namespace NekoRay::fmt {
{"type", "vmess"},
{"server", serverAddress},
{"server_port", serverPort},
{"uuid", uuid},
{"uuid", uuid.trimmed()},
{"alter_id", aid},
{"security", security},
};
@@ -107,7 +107,7 @@ namespace NekoRay::fmt {
QJsonObject settings;
if (proxy_type == proxy_VLESS) {
outbound["uuid"] = password;
outbound["uuid"] = password.trimmed();
} else {
outbound["password"] = password;
}