Fix calendar rrule until where event is fullday but rrule until has a non-0 time (#3782)

This fixes #3781 

tests supplied

see
https://forum.magicmirror.builders/topic/19637/issue-with-outlook-recurring-events
This commit is contained in:
sam detweiler
2025-05-12 16:39:36 -05:00
committed by GitHub
parent ed419ce5b3
commit 2422e847b1
5 changed files with 70 additions and 0 deletions

View File

@@ -84,6 +84,10 @@ describe("Calendar module", () => {
await helpers.startApplication("tests/configs/modules/calendar/rrule_until.js", "07 Mar 2024 10:38:00 GMT-07:00", [], "America/Los_Angeles");
await expect(doTestCount()).resolves.toBe(1);
});
it("Issue #3781 recurrence rrule until with date only uses timezone offset incorrectly", async () => {
await helpers.startApplication("tests/configs/modules/calendar/fullday_until.js", "01 May 2025", [], "America/Los_Angeles");
await expect(doTestCount()).resolves.toBe(1);
});
});
/*