Monotone-Parent: 6c7df05d6446c77649d60795ea43d844c59e9838

Monotone-Revision: 33a6acd0b9cf83c40083b83b53daf3d23ec7025e

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-12-12T17:24:12
This commit is contained in:
Wolfgang Sourdeau
2011-12-12 17:24:12 +00:00
parent 68fff252ba
commit 68d84eaa23
3 changed files with 12 additions and 0 deletions

View File

@@ -1,3 +1,11 @@
2011-12-12 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Appointments/iCalEvent+SOGo.m (-quickRecord): set
"c_category" to NULL when empty.
* OGoContentStore/OCSContactFieldExtractor.m
(-extractQuickFieldsFromVCard:): same as above.
2011-12-12 Francis Lachapelle <flachapelle@inverse.ca>
* Tools/SOGoEAlarmsNotifier.m

View File

@@ -75,6 +75,8 @@
if ([values count] > 0)
[fields setObject: [values componentsJoinedByString: @","]
forKey: @"c_categories"];
else
[fields setObject: [NSNull null] forKey: @"c_categories"];
[fields setObject: @"vcard" forKey: @"c_component"];
return fields;

View File

@@ -261,6 +261,8 @@
if ([categories count] > 0)
[row setObject: [categories componentsJoinedByString: @","]
forKey: @"c_category"];
else
[row setObject: [NSNull null] forKey: @"c_category"];
return row;
}