diff --git a/SoObjects/Contacts/SOGoFolder+CardDAV.m b/SoObjects/Contacts/SOGoFolder+CardDAV.m index 3c9130670..d19306987 100644 --- a/SoObjects/Contacts/SOGoFolder+CardDAV.m +++ b/SoObjects/Contacts/SOGoFolder+CardDAV.m @@ -187,7 +187,10 @@ // If no filters are provided, we return everything. if (![filters count]) - [filters addObject: [NSDictionary dictionaryWithObject: @"." forKey: @"mail"]]; + { + [filters addObject: [NSDictionary dictionaryWithObject: @"." forKey: @"email"]]; + [filters addObject: [NSDictionary dictionaryWithObject: @"%" forKey: @"name"]]; + } return filters; }