Skip to content

Commit

Permalink
fix(mail(dav)): restore support for filtering by sent-date
Browse files Browse the repository at this point in the history
  • Loading branch information
cgx committed Nov 9, 2021
1 parent 620d8a0 commit 563f1d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SoObjects/Mailer/EOQualifier+MailDAV.m
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ + (id) qualifierFromMailDAVMailFilters: (id <DOMElement>) mailFilters
@"recent", @"seen", @"deleted", nil];
strings = [NSArray arrayWithObjects: @"from", @"to", @"cc",
@"keywords", @"body", nil];
dates = [NSArray arrayWithObjects: @"date", @"receive-date", nil];
dates = [NSArray arrayWithObjects: @"date", @"receive-date", @"sent-date", nil];

formats = nil;
list = [mailFilters childNodes];
Expand Down

0 comments on commit 563f1d2

Please sign in to comment.