1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-01 04:35:57 +00:00

Remove spaces from host name

This commit is contained in:
M66B 2021-04-29 20:35:10 +02:00
parent 7e81d96b7a
commit aa551d592a

View file

@ -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());