Skip to content

Commit

Permalink
fix(calendar): Fix inaccessibility to personal calendar on Mac OS X V…
Browse files Browse the repository at this point in the history
…entura. Fixes #5639
  • Loading branch information
WoodySlum committed Feb 1, 2023
1 parent ba0d4a5 commit ef53f6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SoObjects/Appointments/SOGoAppointmentFolder.m
Original file line number Diff line number Diff line change
Expand Up @@ -2548,7 +2548,7 @@ - (NSArray *) davResourceType
XMLNS_GROUPDAV, nil];
[colType addObject: gdVTodoCol];
}
if ([[nameInContainer lowercaseString] isEqualToString: @"personal"])
if ([nameInContainer isEqualToString: @"personal"])
[colType addObject: [NSArray arrayWithObjects: @"schedule-outbox",
XMLNS_CALDAV, nil]];
}
Expand Down

0 comments on commit ef53f6c

Please sign in to comment.