Small display fix

This commit is contained in:
M66B 2023-02-13 16:06:10 +01:00
parent 2c4d1e96f3
commit 34d577755e
1 changed files with 1 additions and 1 deletions

View File

@ -709,7 +709,7 @@ public class FragmentQuickSetup extends FragmentBase {
if (provider != null &&
provider.imap != null && provider.smtp != null) {
tvUser.setText("-");
tvUser.setText(TextUtils.isEmpty(provider.username) ? "-" : provider.username);
tvImap.setText(provider.imap.toString());
tvSmtp.setText(provider.smtp.toString());
grpSetup.setVisibility(View.VISIBLE);