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:
michael.buettner%sun.com
2006-11-13 12:01:47 +00:00
parent 88328512a1
commit 331437cbb6

View File

@@ -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) {