(fix) skip organizer from attendees list (fixes #4402)

pull/240/head
Ludovic Marcotte 2018-02-14 10:00:13 -05:00
parent e7c56e86d4
commit 9776e9d217
2 changed files with 4 additions and 0 deletions

View File

@ -861,6 +861,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// { "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"]];

1
NEWS
View File

@ -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)
-------------------