mirror of https://github.com/M66B/FairEmail.git
Quick setup username
This commit is contained in:
parent
08e87e5806
commit
84f8b9c213
|
@ -422,6 +422,7 @@ public class FragmentQuickSetup extends FragmentBase {
|
|||
}
|
||||
|
||||
if (check) {
|
||||
args.putString("user", user);
|
||||
args.putSerializable("imap_certificate", imap_certificate);
|
||||
args.putSerializable("smtp_certificate", smtp_certificate);
|
||||
return provider;
|
||||
|
@ -643,7 +644,7 @@ public class FragmentQuickSetup extends FragmentBase {
|
|||
boolean smtpMatches = (provider != null &&
|
||||
EntityCertificate.matches(provider.imap.host, smtpNames));
|
||||
|
||||
tvUser.setText(provider == null ? null : provider.username);
|
||||
tvUser.setText(args.getString("user"));
|
||||
tvImap.setText(provider == null ? null : provider.imap.toString());
|
||||
tvSmtp.setText(provider == null ? null : provider.smtp.toString());
|
||||
grpSetup.setVisibility(provider == null ? View.GONE : View.VISIBLE);
|
||||
|
|
Loading…
Reference in New Issue