Merge pull request #187 from ethoms/patch-1

fix (revised) for issue with CardDAV sync with the DAVDroid sync client.
This commit is contained in:
extrafu 2016-01-25 09:19:16 -05:00
commit 57901b8469

View file

@ -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;
}