mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-24 22:39:31 +00:00
fix(calendar): fix all-day events in lists
All-day events start date was wrong when the period was covering a DST change.
This commit is contained in:
@@ -298,7 +298,7 @@ static NSArray *tasksFields = nil;
|
||||
*/
|
||||
|
||||
//NSLog(@"***[UIxCalListingActions _fixDates:] %@", [theRecord objectForKey: @"c_title"]);
|
||||
if (dayBasedView || [[theRecord objectForKey: @"c_isallday"] boolValue])
|
||||
if (currentView && (dayBasedView || [[theRecord objectForKey: @"c_isallday"] boolValue]))
|
||||
{
|
||||
for (count = 0; count < 2; count++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user