Convert to lower case before requesting encryption

This commit is contained in:
M66B 2019-07-25 07:41:37 +02:00
parent 0042c5e691
commit f2c454a744
1 changed files with 1 additions and 1 deletions

View File

@ -1076,7 +1076,7 @@ public class FragmentCompose extends FragmentBase {
String[] tos = new String[ato.length];
for (int i = 0; i < ato.length; i++)
tos[i] = ato[i].getAddress();
tos[i] = ato[i].getAddress().toLowerCase();
Intent intent = new Intent(OpenPgpApi.ACTION_GET_KEY_IDS);
intent.putExtra(OpenPgpApi.EXTRA_USER_IDS, tos);