dateMenu: Use intervals with non-inclusive ends for date ranges

The ical events, we are comparing these intervals to use the first point
in time after the end of the event as their end time, while the code in
gnome-shell was using the last point in time within the range. This was
causing multi-day events ranging from 0:00 to 0:00 to have a trailing
"..." shown on the last day.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2023>
This commit is contained in:
Sebastian Keller
2021-11-04 12:42:52 +01:00
committed by Marge Bot
parent 5eddcd3cf2
commit 2fffe91488
2 changed files with 9 additions and 11 deletions

View File

@ -47,11 +47,8 @@ function _getBeginningOfDay(date) {
}
function _getEndOfDay(date) {
let ret = new Date(date.getTime());
ret.setHours(23);
ret.setMinutes(59);
ret.setSeconds(59);
ret.setMilliseconds(999);
const ret = _getBeginningOfDay(date);
ret.setDate(ret.getDate() + 1);
return ret;
}