See ChangeLog

Monotone-Parent: 0a26aa3104394fc27aedec6025fb6d01075058b4
Monotone-Revision: 6a276a3a3ea0a9b3f1f8f69464b4b6058b639b18

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2011-07-05T15:08:44
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Ludovic Marcotte
2011-07-05 15:08:44 +00:00
parent decbce9f27
commit 05e20a6751
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -5,6 +5,9 @@
update the right event in the database in order to
update major properties coming from external invitations
during updates.
* SoObjects/Appointments/SOGoAppointmentObject.m (-PUTAction:)
We check if uid is not nil prior comparing it to the
owner. This fixes bug #1323
2011-07-02 Ludovic Marcotte <lmarcotte@inverse.ca>
@@ -1809,7 +1809,7 @@
else
uid = [[[[[newEvent parent] events] objectAtIndex: 0] organizer] uid];
if ([uid caseInsensitiveCompare: owner] == NSOrderedSame)
if (uid && [uid caseInsensitiveCompare: owner] == NSOrderedSame)
{
if ((ex = [self _handleUpdatedEvent: newEvent fromOldEvent: oldEvent]))
return ex;