mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-04 12:58:50 +00:00
Monotone-Parent: 8dfe1852810c498475191f263ec7a309097f9881
Monotone-Revision: ca86ebb874f81019a9e4dfc6bc2ab4782b5b814b Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2008-08-18T15:23:30 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2008-08-18 Ludovic Marcotte <lmarcotte@inverse.ca>
|
||||
|
||||
* UI/MailPartViewers/UIxMailPartMessageViewer.m
|
||||
([UIxMailPartMessageViewer -formattedComponents:components]):
|
||||
don't report nil components.
|
||||
|
||||
2008-08-13 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* SoObjects/Appointments/iCalEventChanges+SOGo.m
|
||||
|
||||
@@ -141,7 +141,8 @@
|
||||
for (count = 0; count < max; count++)
|
||||
{
|
||||
component = [[components objectAtIndex: count] email];
|
||||
[formattedComponents addObject: component];
|
||||
if (component)
|
||||
[formattedComponents addObject: component];
|
||||
}
|
||||
|
||||
return [formattedComponents componentsJoinedByString: @", "];
|
||||
|
||||
Reference in New Issue
Block a user