mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-10 09:21:23 +00:00
(web) Fix freebusy information with all-day events
This commit is contained in:
1
NEWS
1
NEWS
@@ -16,6 +16,7 @@ Bug fixes
|
||||
- [web] fixed synchronisation of calendar categories
|
||||
- [web] fixed popup window detection in message viewer (#4518)
|
||||
- [web] fixed behaviour of return receipt actions
|
||||
- [web] fixed freebusy information with all-day events
|
||||
- [core] fixed email reminders support for tasks
|
||||
- [core] fixed time conflict validation (#4539)
|
||||
|
||||
|
||||
@@ -196,6 +196,8 @@
|
||||
// User is busy for this event
|
||||
currentStartDate = [record objectForKey: @"startDate"];
|
||||
currentEndDate = [record objectForKey: @"endDate"];
|
||||
if ([currentStartDate earlierDate: startDate] == currentStartDate)
|
||||
currentStartDate = startDate;
|
||||
dayKey = [currentStartDate shortDateString];
|
||||
dayData = [freeBusy objectForKey: dayKey];
|
||||
if (!dayData)
|
||||
@@ -203,8 +205,6 @@
|
||||
dayData = [NSMutableDictionary dictionary];
|
||||
[freeBusy setObject: dayData forKey: dayKey];
|
||||
}
|
||||
if ([currentStartDate earlierDate: startDate] == currentStartDate)
|
||||
currentStartDate = startDate;
|
||||
|
||||
currentDate = [NSCalendarDate dateWithYear: [currentStartDate yearOfCommonEra]
|
||||
month: [currentStartDate monthOfYear]
|
||||
|
||||
Reference in New Issue
Block a user