mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-25 07:23:03 +00:00
Use semicolon to separate account/email
This commit is contained in:
parent
6449273f0d
commit
cfc0f0088d
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ public class AdapterIdentitySelect extends ArrayAdapter<TupleIdentityEx> {
|
|||
text1.setText(identity.getDisplayName() + " <" + identity.email + ">");
|
||||
else {
|
||||
text1.setText(identity.getDisplayName() + (identity.primary ? " ★" : ""));
|
||||
text2.setText(identity.accountName + "/" + identity.email);
|
||||
text2.setText(identity.accountName + ":" + identity.email);
|
||||
}
|
||||
|
||||
tvExtra.setText(
|
||||
|
|
Loading…
Reference in a new issue