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
parent 3982826ad3
commit 99ef7e6a1b

View File

@ -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");