зеркало из https://github.com/mozilla/pjs.git
Bug #357147 cloned proxies forget about attendee list r=lilmatt
This commit is contained in:
Родитель
a960f261c4
Коммит
2ce8f6920d
|
@ -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) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче