Fix allDay reminders notifications end time

This commit is contained in:
yflory 2021-04-14 11:09:21 +02:00
parent be45337d11
commit a0b67cc364
1 changed files with 7 additions and 1 deletions

View File

@ -107,7 +107,13 @@ define([
if (ev.isAllDay) {
if (ev.startDay) { ev.start = +new Date(ev.startDay); }
if (ev.endDay) { ev.end = +new Date(ev.endDay); }
if (ev.endDay) {
var endDate = new Date(obj.endDay);
endDate.setHours(23);
endDate.setMinutes(59);
endDate.setSeconds(59);
obj.end = +endDate;
}
}
// XXX add a limit to make sure we don't go too far in the past?