Skip to content

Commit

Permalink
(fix) skip organizer from attendees list (fixes #4402)
Browse files Browse the repository at this point in the history
  • Loading branch information
extrafu committed Feb 14, 2018
1 parent e7c56e8 commit 9776e9d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ActiveSync/iCalEvent+ActiveSync.m
Expand Up @@ -861,6 +861,9 @@ - (void) takeActiveSyncValues: (NSDictionary *) theValues
// { "Attendee_Email" = "sogo3@example.com"; "Attendee_Name" = "Wolfgang Fritz"; "Attendee_Status" = 5; "Attendee_Type" = 1; }
attendee = [o objectAtIndex: i];

if ([self isOrganizer: [attendee objectForKey: @"Attendee_Email"]])
continue;

person = [iCalPerson elementWithTag: @"attendee"];
[person setCn: [attendee objectForKey: @"Attendee_Name"]];
[person setEmail: [attendee objectForKey: @"Attendee_Email"]];
Expand Down
1 change: 1 addition & 0 deletions NEWS
Expand Up @@ -55,6 +55,7 @@ Bug fixes
- [web] fixed decoding of spaces in URL-encoded parameters (+)
- [eas] hebrew folders encoding problem using EAS (#4240)
- [eas] avoid sync requests for shared folders every second (#4275)
- [eas] we skip the organizer from the attendees list (#4402)

3.2.10 (2017-07-05)
-------------------
Expand Down

0 comments on commit 9776e9d

Please sign in to comment.