mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-04 19:15:27 +00:00
Fixed once more true/false errors
This commit is contained in:
@@ -1063,7 +1063,7 @@ static NSArray *reminderValues = nil;
|
||||
obj = [vacationOptions objectForKey: @"ignoreLists"];
|
||||
|
||||
if (obj == nil)
|
||||
ignore = YES; // defaults to true
|
||||
ignore = YES; // defaults to YES
|
||||
else
|
||||
ignore = [obj boolValue];
|
||||
|
||||
@@ -1233,8 +1233,8 @@ static NSArray *reminderValues = nil;
|
||||
- (BOOL) isSieveServerAvailable
|
||||
{
|
||||
return (([(NGSieveClient *)[self sieveClient] isConnected])
|
||||
? true
|
||||
: false);
|
||||
? YES
|
||||
: NO);
|
||||
}
|
||||
|
||||
- (id <WOActionResults>) defaultAction
|
||||
|
||||
Reference in New Issue
Block a user