This commit is contained in:
ctalbert%mozilla.com 2008-02-25 19:53:10 +00:00
Родитель a86c2f102c
Коммит 6f62f2aa4a
1 изменённых файлов: 9 добавлений и 1 удалений

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

@ -441,7 +441,15 @@ calItipProcessor.prototype = {
}
}
};
aTargetCal.getItem(aCalItem.id, foundItemListener);
if (aTargetCal) {
aTargetCal.getItem(aCalItem.id, foundItemListener);
} else {
// Then we do not have a target calendar to search,
// this is probably a DECLINE reply or some other such response,
// allow it to pass through
this._continueProcessingItem(aCalItem, null, aRecvMethod, aRespMethod,
null, aTargetCal, aListener);
}
},
/**