Remove spaces from host name

pull/198/head
M66B 3 years ago
parent 7e81d96b7a
commit aa551d592a

@ -799,7 +799,7 @@ public class FragmentAccount extends FragmentBase {
else
encryption = EmailService.ENCRYPTION_SSL;
args.putString("host", etHost.getText().toString().trim());
args.putString("host", etHost.getText().toString().trim().replace(" ", ""));
args.putInt("encryption", encryption);
args.putBoolean("insecure", cbInsecure.isChecked());
args.putString("port", etPort.getText().toString());

Loading…
Cancel
Save