Finish loading empty calendars. Fixes issue: #124

This commit is contained in:
Michael Teeuw
2016-04-05 10:01:54 +02:00
parent 700ebc53f8
commit c4bfa6d4d8
3 changed files with 18 additions and 6 deletions

View File

@@ -123,10 +123,6 @@ var CalendarFetcher = function(url, reloadInterval, maximumEntries, maximumNumbe
* Broadcast the exsisting events.
*/
this.broadcastEvents = function() {
if (events.length <= 0) {
//console.log('No events to broadcast yet.');
return;
}
//console.log('Broadcasting ' + events.length + ' events.');
eventsReceivedCallback(self);
};