mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-30 10:47:17 +00:00
(fix) can now invite to exceptions only (fixes #2561)
This commit is contained in:
@@ -126,7 +126,7 @@
|
||||
boolTmp = ((isAllDay) ? 1 : 0);
|
||||
[row setObject: [NSNumber numberWithInt: boolTmp]
|
||||
forKey: @"c_isallday"];
|
||||
boolTmp = (([self isRecurrent]) ? 1 : 0);
|
||||
boolTmp = ((([self isRecurrent] || [self recurrenceId])) ? 1 : 0);
|
||||
[row setObject: [NSNumber numberWithInt: boolTmp]
|
||||
forKey: @"c_iscycle"];
|
||||
boolTmp = (([self isOpaque]) ? 1 : 0);
|
||||
|
||||
Reference in New Issue
Block a user