mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-07 06:18:50 +00:00
Monotone-Parent: 6c7df05d6446c77649d60795ea43d844c59e9838
Monotone-Revision: 33a6acd0b9cf83c40083b83b53daf3d23ec7025e Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2011-12-12T17:24:12
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user