Don't manually add VTIMEZONE bits into ICS calendars; this was triggering crashes (bug 305857); r=mvl

This commit is contained in:
dmose%mozilla.org 2005-10-29 20:32:51 +00:00
Родитель 3982826ad3
Коммит 99ef7e6a1b
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -436,6 +436,13 @@ calICSCalendar.prototype = {
todo.icalComponent = subComp;
this.mMemoryCalendar.addItem(todo, null);
break;
case "VTIMEZONE":
// this should already be attached to the relevant
// events in the calendar, so there's no need to
// do anything with it here.
break;
default:
this.unmappedComponents.push(subComp);
dump(subComp.componentType+"\n");