From 223d73b01b6bc6e950d6fa4e3bcc7b110e3b8c84 Mon Sep 17 00:00:00 2001 From: Adam Shaw Date: Mon, 23 Jun 2014 23:52:10 -0700 Subject: [PATCH] persist addEventSource calls (issue 2191) --- src/EventManager.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/EventManager.js b/src/EventManager.js index 2a734e9..d7c821e 100644 --- a/src/EventManager.js +++ b/src/EventManager.js @@ -230,6 +230,7 @@ function EventManager(options) { // assumed to be a calendar function addEventSource(sourceInput) { var source = buildEventSource(sourceInput); if (source) { + sources.push(source); pendingSourceCnt++; fetchEventSource(source, currentFetchID); // will eventually call reportEvents }