From f386c6ae257a7aa0c8a24a9363db8e7989a2aba3 Mon Sep 17 00:00:00 2001 From: "daniel.boelzle%sun.com" Date: Thu, 13 Sep 2007 15:23:02 +0000 Subject: [PATCH] bug 395777: changing default for non-owned calendar to readOnly, bug 393387: being mild on cancelled operations -- just warn git-svn-id: svn://10.0.0.236/branches/MOZILLA_1_8_BRANCH@235938 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/calendar/providers/wcap/calWcapRequest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/calendar/providers/wcap/calWcapRequest.js b/mozilla/calendar/providers/wcap/calWcapRequest.js index 45ff655c10e..f1fd5630d73 100644 --- a/mozilla/calendar/providers/wcap/calWcapRequest.js +++ b/mozilla/calendar/providers/wcap/calWcapRequest.js @@ -158,7 +158,7 @@ calWcapRequest.prototype = { cancelAllSubRequests: function calWcapRequest_cancelAllSubRequests(status) { var attachedRequests = this.m_attachedRequests; this.m_attachedRequests = []; - attachedRequests.forEach( function(req) { req.cancel(); } ); + attachedRequests.forEach( function(req) { req.cancel(null); } ); }, detachFromParent: function calWcapRequest_detachFromParent(err) {