Merge branch 'develop' into cal-again2

This commit is contained in:
sam detweiler 2020-11-28 19:23:15 -06:00 committed by GitHub
commit 137facf95a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -35,6 +35,7 @@ _This release is scheduled to be released on 2021-01-01._
- Fix calendar full day event east of UTC start time (#2200)
- Fix non-fullday recurring rule processing (#2216)
## [2.13.0] - 2020-10-01
Special thanks to the following contributors: @bryanzzhu, @bugsounet, @chamakura, @cjbrunner, @easyas314, @larryare, @oemel09, @rejas, @sdetweil & @sthuber90.

View File

@ -111,6 +111,7 @@ const CalendarFetcher = function (url, reloadInterval, excludedEvents, maximumEn
if (event.type === "VEVENT") {
let startDate = eventDate(event, "start");
let endDate;
Log.debug("\nevent=" + JSON.stringify(event));
if (typeof event.end !== "undefined") {
endDate = eventDate(event, "end");