mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-27 14:59:02 +08:00
remove end slash when setting server config (#8779)
Signed-off-by: 21pages <sunboeasy@gmail.com>
This commit is contained in:
parent
22f3425ace
commit
14b505130b
@ -3098,9 +3098,16 @@ Future<bool> setServerConfig(
|
||||
List<RxString>? errMsgs,
|
||||
ServerConfig config,
|
||||
) async {
|
||||
config.idServer = config.idServer.trim();
|
||||
config.relayServer = config.relayServer.trim();
|
||||
config.apiServer = config.apiServer.trim();
|
||||
String removeEndSlash(String input) {
|
||||
if (input.endsWith('/')) {
|
||||
return input.substring(0, input.length - 1);
|
||||
}
|
||||
return input;
|
||||
}
|
||||
|
||||
config.idServer = removeEndSlash(config.idServer.trim());
|
||||
config.relayServer = removeEndSlash(config.relayServer.trim());
|
||||
config.apiServer = removeEndSlash(config.apiServer.trim());
|
||||
config.key = config.key.trim();
|
||||
if (controllers != null) {
|
||||
controllers[0].text = config.idServer;
|
||||
|
Loading…
Reference in New Issue
Block a user