See ChangeLog

Monotone-Parent: 0be42fb4ac553a3b8b6b1d18144d2c4aa9dfdd0e
Monotone-Revision: df3aa42d7aa65c233839e872cc103d9cf8c2d654

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2012-09-12T14:42:24
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Ludovic Marcotte 2012-09-12 14:42:24 +00:00
parent e87e1ab083
commit c9b456c86d
2 changed files with 13 additions and 2 deletions

View File

@ -3,6 +3,9 @@
* OpenChange/MAPIStoreTasksMessage.m: added a way to get
the PidTagBody of a task. This could be generalized eventually
with the code in MAPIStoreAppointmentWrapper.
* OpenChange/MAPIStoreMessage.m (-saveMessage): added a safety
check to avoid a crash when first accepting invitations on
a newly created profile.
2012-09-07 Francis Lachapelle <flachapelle@inverse.ca>

View File

@ -541,8 +541,16 @@ rtf2html (NSData *compressedRTF)
{
/* table modified */
for (count = 0; count < max; count++)
[[containerTables objectAtIndex: count]
notifyChangesForChild: self];
{
id table;
table = [containerTables objectAtIndex: count];
/* Safety check here as we could have MAPIStorePermissionsTable instances
in our containerTables array. This code might need to be reworked later */
if ([table respondsToSelector: @selector(notifyChangesForChild:)])
[table notifyChangesForChild: self];
}
[container cleanupCaches];
}
[self setIsNew: NO];