From 83cd93f2d905bf0219b530cf4d6fa404effd78fd Mon Sep 17 00:00:00 2001 From: "mattwillis%gmail.com" Date: Sat, 28 Oct 2006 18:49:28 +0000 Subject: [PATCH] bug 356183 - Typo fix --- calendar/providers/caldav/calDavCalendar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/calendar/providers/caldav/calDavCalendar.js b/calendar/providers/caldav/calDavCalendar.js index 844389f46c9..90f59f41996 100644 --- a/calendar/providers/caldav/calDavCalendar.js +++ b/calendar/providers/caldav/calDavCalendar.js @@ -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 ];