Bug #357147 cloned proxies forget about attendee list r=lilmatt
git-svn-id: svn://10.0.0.236/branches/MOZILLA_1_8_BRANCH@215195 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -653,9 +653,11 @@ calItemBase.prototype = {
|
||||
|
||||
if (this.mOrganizer)
|
||||
icalcomp.addProperty(this.mOrganizer.icalProperty);
|
||||
if (this.mAttendees) {
|
||||
for (var i = 0; i < this.mAttendees.length; i++)
|
||||
icalcomp.addProperty(this.mAttendees[i].icalProperty);
|
||||
var attendees = this.getAttendees({});
|
||||
if (attendees.length > 0) {
|
||||
for (var i = 0; i < attendees.length; i++) {
|
||||
icalcomp.addProperty(attendees[i].icalProperty);
|
||||
}
|
||||
}
|
||||
|
||||
if (this.mGeneration) {
|
||||
|
||||
Reference in New Issue
Block a user