diff --git a/ChangeLog b/ChangeLog index 31f385538..0bc9da8f6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-12-03 Francis Lachapelle + + * SoObjects/SOGo/iCalEntityObject+Utilities.m (-findParticipant:): + we now search in all attendees, including attendees with role + NON-PARTICIPANT. + 2009-12-02 Wolfgang Sourdeau * SoObjects/SOGo/SOGoUserDefaults.m (+initialize): we need to diff --git a/SoObjects/SOGo/iCalEntityObject+Utilities.m b/SoObjects/SOGo/iCalEntityObject+Utilities.m index 3467c7e75..a23594ed7 100644 --- a/SoObjects/SOGo/iCalEntityObject+Utilities.m +++ b/SoObjects/SOGo/iCalEntityObject+Utilities.m @@ -39,7 +39,7 @@ NSEnumerator *participants; participant = nil; - participants = [[self participants] objectEnumerator]; + participants = [[self attendees] objectEnumerator]; currentParticipant = [participants nextObject]; while (currentParticipant && !participant) if ([user hasEmail: [currentParticipant rfc822Email]])