This commit is contained in:
mattwillis%gmail.com 2006-10-28 18:49:28 +00:00
Родитель e3320aee67
Коммит 83cd93f2d9
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -718,11 +718,11 @@ calDavCalendar.prototype = {
items = [ item ];
}
rv = Components.results.NS_OK;
} else if (item.instanceof Ci.calIEvent) {
} else if (item instanceof Ci.calIEvent) {
iid = Ci.calIEvent;
rv = Components.results.NS_OK;
items = [ item ];
} else if (item.instanceof Ci.calITodo) {
} else if (item instanceof Ci.calITodo) {
iid = Ci.calITodo;
rv = Components.results.NS_OK;
items = [ item ];