mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-17 07:33:57 +00:00
fix(calendar): Fix inaccessibility to personal calendar on Mac OS X Ventura. Fixes #5639
This commit is contained in:
@@ -195,7 +195,7 @@ typedef enum {
|
||||
startDate: (NSCalendarDate **) theStartDate
|
||||
endDate: (NSCalendarDate **) theEndDate;
|
||||
|
||||
- (void) setDavDescription:(NSString *)description;
|
||||
- (NSException *)setDavDescription:(NSString *)description;
|
||||
- (NSString *) davDescription;
|
||||
|
||||
@end
|
||||
|
||||
@@ -2591,10 +2591,14 @@ firstInstanceCalendarDateRange: (NGCalendarDateRange *) fir
|
||||
return componentSet;
|
||||
}
|
||||
|
||||
- (void) setDavDescription: (NSString *) description
|
||||
- (NSException *) setDavDescription: (NSString *) description
|
||||
{
|
||||
[self setFolderPropertyValue: description
|
||||
if (description) {
|
||||
[self setFolderPropertyValue: description
|
||||
inCategory: @"DavDescription"];
|
||||
}
|
||||
|
||||
return nil;
|
||||
}
|
||||
|
||||
- (NSString *) davDescription
|
||||
|
||||
Reference in New Issue
Block a user