dateMenu: Don't manipulate passed events

The event passed to formatEventTime() is reused at a later point.
Therefore, we are not allowed to manipulate the event directly.
This fixes an issue where the user clicks on a multi-day all-day event
the second time before the event gets garbage collected and the event
then is one day shorter.

Fixes 528ee01fef

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2184>
This commit is contained in:
Björn Daase 2022-02-15 11:21:48 +01:00
parent 8655814329
commit 0fded45c76

View File

@ -175,7 +175,7 @@ class EventsSection extends St.Button {
_formatEventTime(event) {
const eventStart = event.date;
const eventEnd = event.end;
let eventEnd = event.end;
const allDay =
eventStart.getTime() === this._startDate.getTime() && eventEnd.getTime() === this._endDate.getTime();
@ -203,8 +203,10 @@ class EventsSection extends St.Button {
const startYear = eventStart.getFullYear();
if (endsAtMidnight)
if (endsAtMidnight) {
eventEnd = new Date(eventEnd);
eventEnd.setDate(eventEnd.getDate() - 1);
}
const endYear = eventEnd.getFullYear();