diff --git a/SoObjects/SOGo/SOGoDefaultsSource.m b/SoObjects/SOGo/SOGoDefaultsSource.m index fff8a9d3d..d5004303a 100644 --- a/SoObjects/SOGo/SOGoDefaultsSource.m +++ b/SoObjects/SOGo/SOGoDefaultsSource.m @@ -123,7 +123,7 @@ NSString *SOGoDefaultsSourceUnmutableSource = @"SOGoDefaultsSourceUnmutableSourc - (void) setBool: (BOOL) value forKey: (NSString *) key { - [self setInteger: (value) ? 1: 0 forKey: key]; + [self setInteger: (value ? 1: 0) forKey: key]; } - (BOOL) boolForKey: (NSString *) key