Identity: copy host name of account

pull/196/head
M66B 5 years ago
parent 2aa494a13e
commit 8acf6f86b5

@ -270,6 +270,10 @@ public class FragmentIdentity extends FragmentBase {
spProvider.setTag(0);
spProvider.setSelection(0);
setProvider((EmailProvider) spProvider.getItemAtPosition(0));
if (account.host == null || account.host.startsWith("imap"))
etHost.setText(null);
else
etHost.setText(account.host);
grpAdvanced.setVisibility(View.VISIBLE);
}

Loading…
Cancel
Save