From 0b1dab8023ca88184a124bc7a157bdb2ad196e6e Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Thu, 3 Dec 2009 18:33:44 +0000 Subject: [PATCH] See ChangeLog Monotone-Parent: 730c8a73525c070f1f66243a9c692f2ee0adbcd0 Monotone-Revision: 6a57f3626fde7fbfcae50a7c894c35736ad794c8 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2009-12-03T18:33:44 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 6 ++++++ SoObjects/SOGo/iCalEntityObject+Utilities.m | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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]])