mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-14 19:31:22 +00:00
Don't add an empty category to a contact
This commit is contained in:
@@ -485,7 +485,11 @@ static Class SOGoContactGCSEntryK = Nil;
|
||||
o = [values objectAtIndex: i];
|
||||
if ([o isKindOfClass: [NSDictionary class]])
|
||||
{
|
||||
[categories addObject: [o objectForKey: @"value"]];
|
||||
o = [o objectForKey: @"value"];
|
||||
if (o && [o isKindOfClass: [NSString class]] && [(NSString *) o length] > 0)
|
||||
{
|
||||
[categories addObject: o];
|
||||
}
|
||||
}
|
||||
}
|
||||
[card setCategories: categories];
|
||||
|
||||
Reference in New Issue
Block a user