Include duplicate events in broadcasts

This commit is contained in:
Jonathan Kolb 2022-06-09 07:51:08 -04:00
parent 47aefb0c82
commit 604a555e14
2 changed files with 2 additions and 1 deletions

View File

@ -20,6 +20,7 @@ _This release is scheduled to be released on 2022-07-01._
- Use latest node 18 when running tests on github actions
- Update `electron` to v19 and other dependencies.
- Use internal fetch function of node instead external `node-fetch` library if used node version >= `v18`.
- Include duplicate events in broadcasts.
### Fixed

View File

@ -510,7 +510,7 @@ Module.register("calendar", {
continue;
}
}
if (this.listContainsEvent(events, event)) {
if (this.listContainsEvent(events, event) && limitNumberOfEntries) {
continue;
}
event.url = calendarUrl;