mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-04 22:52:19 +00:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user