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:
parent
7e81d96b7a
commit
aa551d592a
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue