Bug #357147 cloned proxies forget about attendee list r=lilmatt

This commit is contained in:
michael.buettner%sun.com 2006-11-13 12:01:47 +00:00
Родитель a960f261c4
Коммит 2ce8f6920d
1 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

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