mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-13 01:08:50 +00:00
Monotone-Parent: 14df382f39f38461d724751dad6ea4e1e8ee57c7
Monotone-Revision: f192e1f1ce3ef4fc536470409d175d3bc7cb4bad Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2012-03-12T05:56:32 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -150,13 +150,21 @@
|
||||
{
|
||||
int rc = MAPISTORE_SUCCESS;
|
||||
NSData *changeList;
|
||||
MAPIStoreGCSFolder *parentFolder;
|
||||
|
||||
if (isNew)
|
||||
rc = MAPISTORE_ERR_NOT_FOUND;
|
||||
else
|
||||
{
|
||||
changeList = [(MAPIStoreGCSFolder *)[self container]
|
||||
predecessorChangeListForMessageWithKey: [self nameInContainer]];
|
||||
parentFolder = (MAPIStoreGCSFolder *)[self container];
|
||||
changeList = [parentFolder
|
||||
predecessorChangeListForMessageWithKey: [self nameInContainer]];
|
||||
if (!changeList)
|
||||
{
|
||||
[parentFolder synchroniseCache];
|
||||
changeList = [parentFolder
|
||||
predecessorChangeListForMessageWithKey: [self nameInContainer]];
|
||||
}
|
||||
if (!changeList)
|
||||
abort ();
|
||||
*data = [changeList asBinaryInMemCtx: memCtx];
|
||||
|
||||
Reference in New Issue
Block a user