mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-23 12:25:23 +00:00
Monotone-Parent: 15503fe623be16f680136363d33fa6452249289a
Monotone-Revision: 29ab1a13365e1046e249420b5176c067f8a38fe9 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2009-07-23T17:34:10 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
2009-07-23 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* SoObjects/Appointments/SOGoAppointmentFolder.m
|
||||
(-davPOSTRequest:withContentType:inContext:) we use a simple comma
|
||||
as recipient separator but with trim the resulting elements.
|
||||
|
||||
* SoObjects/SOGo/NSArray+Utilities.m (-trimmedComponents): new
|
||||
method that returns a trimmed/stripped version of the strings
|
||||
contained in the array.
|
||||
|
||||
@@ -2262,9 +2262,9 @@ firstInstanceCalendarDateRange: (NGCalendarDateRange *) fir
|
||||
originator = [originator substringFromIndex: 7];
|
||||
|
||||
recipients = [[request headerForKey: @"recipient"]
|
||||
componentsSeparatedByString: @", "];
|
||||
componentsSeparatedByString: @","];
|
||||
obj = [self caldavScheduleRequest: [request contentAsString]
|
||||
from: originator to: recipients];
|
||||
from: originator to: [recipients trimmedComponents]];
|
||||
}
|
||||
else
|
||||
obj = [super davPOSTRequest: request withContentType: cType
|
||||
|
||||
Reference in New Issue
Block a user