Monotone-Parent: 2042b5fba4b0e3a86f1181c84e675df4953329e4

Monotone-Revision: 3b8c41adf2fbd28bd91312ef68f3f4faa8ef381f

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2012-08-13T19:42:08
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2012-08-13 19:42:08 +00:00
parent bff811b7b8
commit de46251676
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
2012-08-13 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreFolder.m (-createFolder:withRow:andFID:):
append a "/" to the new folder url when registering with the
url/id mapper.
* OpenChange/MAPIStoreDBFolder.m (-moveToFolder:withNewName:):
implemented method.

View File

@ -399,7 +399,7 @@ Class NSExceptionK, MAPIStoreFAIMessageK, MAPIStoreMessageTableK, MAPIStoreFAIMe
baseURL = [self url];
if (![baseURL hasSuffix: @"/"])
baseURL = [NSString stringWithFormat: @"%@/", baseURL];
childURL = [NSString stringWithFormat: @"%@%@",
childURL = [NSString stringWithFormat: @"%@%@/",
baseURL, folderKey];
[mapping registerURL: childURL withID: fid];
childFolder = [self lookupFolder: folderKey];