Bug 986852 - Email invitation only sent to the first attendee if "Separate invitation per attendee" is checked. r+a=philipp

CLOSED TREE
This commit is contained in:
MakeMyDay 2014-03-22 20:20:37 +01:00
Родитель dff6d127bf
Коммит abb44c90fc
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -986,8 +986,11 @@ function sendMessage(aItem, aMethod, aRecipientsList, autoResponse) {
sendItem.removeAllAttendees();
sendItem.addAttendee(aRecipient);
// send message
return _sendItem(sendToList, sendItem);
if (!_sendItem(sendToList, sendItem)) {
return false;
};
}
return true;
} else {
return _sendItem(aRecipientsList, aItem);
}