[PATCH] Upstream patch - 09052022

This commit is contained in:
Parthiv Patel
2022-05-09 08:34:29 +00:00
parent caf9479edf
commit 3a0d426f7f
@@ -87,6 +87,7 @@ class Meeting(models.Model):
else:
start = parse(google_event.start.get('date'))
stop = parse(google_event.end.get('date')) - relativedelta(days=1)
stop = max(start, stop) # For the cases that start date and end date were the same
values['allday'] = True
values['start'] = start
values['stop'] = stop