Trim usernames

This commit is contained in:
M66B
2019-06-21 19:46:46 +02:00
parent 6a86625862
commit 03ff3d068a
3 changed files with 3 additions and 3 deletions

View File

@@ -557,7 +557,7 @@ public class FragmentIdentity extends FragmentBase {
boolean starttls = args.getBoolean("starttls");
boolean insecure = args.getBoolean("insecure");
String port = args.getString("port");
String user = args.getString("user");
String user = args.getString("user").trim();
String password = args.getString("password");
String realm = args.getString("realm");
boolean use_ip = args.getBoolean("use_ip");