mirror of
https://github.com/etesync/android
synced 2024-11-22 07:58:09 +00:00
Contact import: Don't list accounts with an empty account name or type.
This commit is contained in:
parent
25759a4e86
commit
12c41b450c
@ -102,9 +102,11 @@ public class LocalContactImportFragment extends Fragment {
|
||||
while (cursor.moveToNext()) {
|
||||
String accountName = cursor.getString(accountNameIndex);
|
||||
String accountType = cursor.getString(accountTypeIndex);
|
||||
if (account == null || (!account.name.equals(accountName) || !account.type.equals(accountType))) {
|
||||
account = new Account(accountName, accountType);
|
||||
localAddressBooks.add(new LocalAddressBook(getContext(), account, provider));
|
||||
if (account == null || !(account.name.equals(accountName) && account.type.equals(accountType))) {
|
||||
if ((accountName != null) && (accountType != null)) {
|
||||
account = new Account(accountName, accountType);
|
||||
localAddressBooks.add(new LocalAddressBook(getContext(), account, provider));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user