Fixed collation

This commit is contained in:
M66B
2019-04-24 11:59:28 +02:00
parent 3fdba49f88
commit 856d04d79e
3 changed files with 3 additions and 9 deletions

View File

@@ -586,8 +586,6 @@ public class FragmentIdentity extends FragmentBase {
if (synchronize && TextUtils.isEmpty(password) && !insecure)
throw new IllegalArgumentException(context.getString(R.string.title_no_password));
email = email.toLowerCase();
if (TextUtils.isEmpty(display))
display = null;
@@ -596,13 +594,9 @@ public class FragmentIdentity extends FragmentBase {
if (TextUtils.isEmpty(replyto))
replyto = null;
else
replyto = replyto.toLowerCase();
if (TextUtils.isEmpty(bcc))
bcc = null;
else
bcc = bcc.toLowerCase();
if (Color.TRANSPARENT == color)
color = null;