See ChangeLog

Monotone-Parent: 94c9fbf7703f8bdb98dae4ab4791e27a4d07d72a
Monotone-Revision: b917b1533c38a1f8ebf599d2f181801de2e29599

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2011-01-11T20:24:49
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Ludovic Marcotte
2011-01-11 20:24:49 +00:00
parent 218712bc0f
commit 2c7f2a4c48
3 changed files with 52 additions and 8 deletions
+2 -2
View File
@@ -1253,9 +1253,9 @@ iRANGE(2);
currentOwnerIdentity = [currentUser defaultIdentity];
currentOwnerProfile = [NSMutableDictionary dictionary];
[currentOwnerProfile setObject: [currentOwnerIdentity objectForKey: @"fullName"]
[currentOwnerProfile setObject: ([currentOwnerIdentity objectForKey: @"fullName"] == nil ? @"" : [currentOwnerIdentity objectForKey: @"fullName"])
forKey: @"name"];
[currentOwnerProfile setObject: [currentOwnerIdentity objectForKey: @"email"]
[currentOwnerProfile setObject: ([currentOwnerIdentity objectForKey: @"email"] == nil ? @"" : [currentOwnerIdentity objectForKey: @"email"])
forKey: @"email"];
[currentOwnerProfile setObject: @"accepted"
forKey: @"partstat"];