(fix) skip potentially bogus cards coming from LDAP

pull/213/head
Ludovic Marcotte 2016-06-06 13:07:48 -04:00
parent b4a79db603
commit e54d5c1b06
1 changed files with 3 additions and 2 deletions

View File

@ -2577,8 +2577,9 @@ void handle_eas_terminate(int signum)
{
contact = [allContacts objectAtIndex: j];
// We skip lists for now
if ([[contact objectForKey: @"c_component"] isEqualToString: @"vlist"])
// We skip lists for now and bogus entries
if ([[contact objectForKey: @"c_component"] isEqualToString: @"vlist"] ||
[[contact objectForKey: @"c_name"] length] == 0)
continue;
// We get the LDIF entry of our record, for easier processing